10 lines
255 B
C#
10 lines
255 B
C#
namespace Application.Domain.Entity;
|
|
|
|
public class unit_user_load
|
|
{
|
|
public string id { get; set; }
|
|
public string userId { get; set; }
|
|
public string name { get; set; }
|
|
public string code { get; set; }
|
|
public int count { get; set; }
|
|
} |