18 lines
458 B
C#
18 lines
458 B
C#
|
|
using OnlineSalesAutoCrop.CoreAPI.Models.Objects.Systems;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace OnlineSalesAutoCrop.CoreAPI.Models.Responses.Systems
|
|||
|
|
{
|
|||
|
|
public class GroupSearchResponse : ResponseBase
|
|||
|
|
{
|
|||
|
|
public List<GroupBase> Value { get; set; } = [];
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public class GroupByIdResponse : BaseObjectResponse
|
|||
|
|
{
|
|||
|
|
public int GroupId { get; set; }
|
|||
|
|
public bool ViewToAll { get; set; }
|
|||
|
|
public List<PermissionBase> Value { get; set; } = [];
|
|||
|
|
}
|
|||
|
|
}
|