13 lines
338 B
C#
13 lines
338 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AccountManagement.Application.Contracts.SubAccount
|
|
{
|
|
public class SubAccountRoleViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public string Title { get; set; }
|
|
public List<int> Permissions { get; set; }
|
|
public List<long> WorkshopIds { get; set; }
|
|
}
|
|
}
|