1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- namespace AvaloniaPractic.Models;
- public partial class User
- {
- public int Id { get; set; }
- public string Username { get; set; } = null!;
- public string Email { get; set; } = null!;
- public DateTime? Createdat { get; set; }
- public virtual ICollection<Logined> Logineds { get; set; } = new List<Logined>();
- }
|