This commit is contained in:
mmrbnjd
2024-03-30 15:10:36 +03:30
parent f4588f3426
commit a9e3afdea4
60 changed files with 1752 additions and 70 deletions

View File

@@ -0,0 +1,12 @@
namespace TaxPayer.Models.Mongodb
{
public class SystemLog
{
public string TraceIdentifierID { get; set; }
public string Datetime { get; set; }
public string Route { get; set; }
public string Method { get; set; }
public string Type { get; set; }
public string Value { get; set; }
}
}