using OnlineSalesAutoCrop.CoreAPI.Models.Objects.Systems; using System.Collections.Generic; namespace OnlineSalesAutoCrop.CoreAPI.Models.Responses.Systems { public class GroupSearchResponse : ResponseBase { public List Value { get; set; } = []; } public class GroupByIdResponse : BaseObjectResponse { public int GroupId { get; set; } public bool ViewToAll { get; set; } public List Value { get; set; } = []; } }