123456789101112131415161718192021 |
- 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; }
- }
|