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