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

9 lines
207 B
C#
Raw Normal View History

2021-12-20 15:17:09 +05:00
namespace AsbCloudApp.Data
{
2022-04-11 18:00:34 +05:00
public class PermissionDto : IId
{
2021-12-20 15:17:09 +05:00
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
}
}