DD.WellWorkover.Cloud/AsbCloudApp/Data/UserRoleDto.cs

14 lines
326 B
C#
Raw Normal View History

2021-09-10 11:28:57 +05:00
using System.Collections.Generic;
namespace AsbCloudApp.Data
{
public class UserRoleDto : IId
{
public int Id { get; set; }
public string Caption { get; set; }
public int RoleType { get; set; }
public int IdParent { get; set; }
public long Permissions { get; set; }
2021-09-10 11:28:57 +05:00
}
}