Files
Backend-Api/AccountManagement.Application.Contracts/SubAccount/SubAccountRoleViewModel.cs

12 lines
286 B
C#

using System.Collections.Generic;
namespace AccountManagement.Application.Contracts.SubAccount
{
public class SubAccountRoleViewModel
{
public long Id { get; set; }
public string Title { get; set; }
public List<int> Permissions { get; set; }
}
}