Files
moadiran/Back/Data/Models/Mongodb/SystemLog.cs

13 lines
347 B
C#
Raw Normal View History

2024-03-30 15:10:36 +03:30
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; }
}
}