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

9 lines
206 B
C#
Raw Normal View History

2021-12-20 15:17:09 +05:00
namespace AsbCloudApp.Data
{
2021-12-20 15:17:09 +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; }
}
}