// This file has been auto generated by EF Core Power Tools. #nullable disable using System; using System.Collections.Generic; namespace PRSA.DAL.DB { public partial class users { public int id { get; set; } public string fullname { get; set; } public string username { get; set; } public string email { get; set; } public string ad_token { get; set; } public int role_id { get; set; } public bool active { get; set; } public int created_by { get; set; } public DateTime created_at { get; set; } public int updated_by { get; set; } public DateTime updated_at { get; set; } } }