User.cs 381 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaPractic.Models;
  4. public partial class User
  5. {
  6. public int Id { get; set; }
  7. public string Username { get; set; } = null!;
  8. public string Email { get; set; } = null!;
  9. public DateTime? Createdat { get; set; }
  10. public virtual ICollection<Logined> Logineds { get; set; } = new List<Logined>();
  11. }