13 lines
305 B
C#
13 lines
305 B
C#
namespace Back.Data.Models
|
|
{
|
|
//User login report
|
|
public class Ulr
|
|
{
|
|
public int ID { get; set; }
|
|
public string Ip { get; set; }
|
|
public string Type { get; set; } //Panel or Main
|
|
public string Date { get; set; }
|
|
public string Time { get; set; }
|
|
}
|
|
}
|