mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
11 lines
296 B
C#
11 lines
296 B
C#
|
|
namespace Cicm.Database.Models
|
|||
|
|
{
|
|||
|
|
public class Forbidden
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
public string Browser { get; set; }
|
|||
|
|
public string Date { get; set; }
|
|||
|
|
public string Ip { get; set; }
|
|||
|
|
public string Referer { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|