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