This commit is contained in:
mmrbnjd
2024-06-30 19:57:32 +03:30
parent cf521860cf
commit 3702145d02
11 changed files with 214 additions and 150 deletions

12
Back/Data/Models/Ulr.cs Normal file
View File

@@ -0,0 +1,12 @@
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; }
}
}