using System; using System.Collections.Generic; namespace Cloud_Manager.Models.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; } }