15 lines
439 B
C#
15 lines
439 B
C#
namespace TCM_API.ViewModels
|
|
{
|
|
public class Add_health
|
|
{
|
|
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; }
|
|
public string? company_guid { get; set; }
|
|
}
|
|
}
|