using System; using System.Collections.Generic; namespace Biskilog_Cloud.Shared.Models; 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; } public DateTime LastModified { get; set; } }