Files
2024-07-05 21:36:15 +03:30

18 lines
414 B
C#

using System.Collections.Generic;
using _0_Framework.Infrastructure;
//using _0_Framework.Infrastructure;
namespace AccountManagement.Application.Contracts.Role
{
public class EditRole : CreateRole
{
public long Id { get; set; }
public List<PermissionDto> MappedPermissions { get; set; }
public EditRole()
{
Permissions = new List<int>();
}
}
}