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 Permissions { get; set; } } }