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