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

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; } = [];
}
}