forked from ddrilling/AsbCloudServer
10 lines
249 B
C#
10 lines
249 B
C#
namespace AsbCloudApp.Data
|
|
{
|
|
public class PermissionDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public string BitDescription { get; set; }
|
|
}
|
|
} |