14 lines
390 B
C#
14 lines
390 B
C#
|
namespace TCM_API.ViewModels
|
|||
|
{
|
|||
|
public class Add_company
|
|||
|
{
|
|||
|
public string? guid { get; set; }
|
|||
|
public string? firstname { get; set; }
|
|||
|
public string? lastname { get; set; }
|
|||
|
public string? email { get; set; }
|
|||
|
public string? username { get; set; }
|
|||
|
public string? password { get; set; }
|
|||
|
public string? level { get; set; }
|
|||
|
}
|
|||
|
}
|