You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
410 B
21 lines
410 B
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; }
|
|
}
|
|
|