DD.WellWorkover.Cloud/AsbCloudApp/Data/PermissionInfoDto.cs
2021-12-15 16:21:52 +05:00

11 lines
243 B
C#

using System.Collections.Generic;
namespace AsbCloudApp.Data
{
public class PermissionInfoDto : IId
{
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
}
}