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