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

9 lines
191 B
C#
Raw Normal View History

namespace AsbCloudApp.Data
{
public class PermissionDto
{
public int Id { get; set; }
public string Caption { get; set; }
public int Type { get; set; }
}
}