forked from ddrilling/AsbCloudServer
9 lines
191 B
C#
9 lines
191 B
C#
|
namespace AsbCloudApp.Data
|
||
|
{
|
||
|
public class PermissionDto
|
||
|
{
|
||
|
public int Id { get; set; }
|
||
|
public string Caption { get; set; }
|
||
|
public int Type { get; set; }
|
||
|
}
|
||
|
}
|