using System; using System.Collections.Generic; namespace Biskilog_Accounting.Shared.POSModels; public partial class Systemuserrole { public string? Roles { get; set; } public bool? Owner { get; set; } public bool? Manager { get; set; } public bool? Assist { get; set; } public bool? Cashier { get; set; } public int Id { get; set; } }