LoginAttempt.cs 376 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. namespace DontHarmWebApi.Entities
  4. {
  5. public partial class LoginAttempt
  6. {
  7. public int Id { get; set; }
  8. public byte Successfull { get; set; }
  9. public string Login { get; set; } = null!;
  10. public string IpAddress { get; set; } = null!;
  11. public DateTime CreatedAt { get; set; }
  12. }
  13. }