Files
Backend-Api/0_Framework/InfraStructure/PermissionDto.cs
2024-07-05 21:36:15 +03:30

14 lines
289 B
C#

namespace _0_Framework.Infrastructure
{
public class PermissionDto
{
public int Code { get; set; }
public string Name { get; set; }
public PermissionDto(int code, string name)
{
Code = code;
Name = name;
}
}
}