- using System;
- using System.Collections.Generic;
- namespace DontHarmWebApi.Entities
- {
- public partial class LoginAttempt
- {
- public int Id { get; set; }
- public byte Successfull { get; set; }
- public string Login { get; set; } = null!;
- public string IpAddress { get; set; } = null!;
- public DateTime CreatedAt { get; set; }
- }
- }
|