Files
Backend-Api/AccountManagement.Application.Contracts/SubAccount/CreateSubAccountRole.cs
2025-05-30 18:03:47 +03:30

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; }
}
}