OnlineSalesAutoCrop/Api/OnlineSalesAutoCrop.CoreAPI.Models/Requests/Systems/GroupRequest.cs
2026-06-14 12:46:29 +06:00

18 lines
411 B
C#

using OnlineSalesAutoCrop.CoreAPI.Models.Objects.Systems;
using System.Collections.Generic;
namespace OnlineSalesAutoCrop.CoreAPI.Models.Requests.Systems
{
public class ByGroupIdRequest
{
public int GroupId { get; set; }
}
public class GroupRequest : BaseRequest
{
public int GroupId { get; set; }
public bool ViewToAll { get; set; }
public List<PermissionBase> Permissions { get; set; }
}
}