17 lines
418 B
C#
17 lines
418 B
C#
namespace FCOMMON.Models
|
|
{
|
|
|
|
|
|
public class GroupUserModel
|
|
{
|
|
public string Gcode { get; set; }
|
|
public string uid { get; set; }
|
|
public string Process { get; set; }
|
|
public int level { get; set; }
|
|
public string name { get; set; }
|
|
public string email { get; set; }
|
|
public bool useAccount { get; set; }
|
|
public bool useJobReport { get; set; }
|
|
}
|
|
}
|