12 lines
320 B
C#
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; }
|
|
}
|
|
}
|