This commit is contained in:
2019-03-17 21:44:47 +01:00
parent 4f06467469
commit 4347f4859b
8 changed files with 206 additions and 2 deletions

10
API/Models/Log.cs Normal file
View File

@@ -0,0 +1,10 @@
using System;
namespace API.Models {
public class Log {
public long ID { get; set; }
public DateTime Date { get; set; }
public string Method { get; set; }
}
}