14 lines
418 B
C#
14 lines
418 B
C#
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<int> Permissions { get; set; }
|
|
public List<long> WorkshopIds { get; set; }
|
|
}
|
|
}
|