18 lines
411 B
C#
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; }
|
|
}
|
|
}
|