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

12 lines
320 B
C#

using System.Collections.Generic;
namespace AccountManagement.Application.Contracts.SubAccount
{
public class SubAccountsGroupedByRoleViewModel
{
public long RoleId { get; set; }
public string RoleTitle { get; set; }
public List<SubAccountViewModel> SubAccounts { get; set; }
}
}