using System; using System.Collections.Generic; namespace FirstSlice.Models; public partial class User { public int Id { get; set; } public int? FkRoleId { get; set; } public string? Fullname { get; set; } public string? Birthday { get; set; } public string? Phonenumber { get; set; } public string? Address { get; set; } public virtual Role? FkRole { get; set; } }