Initial Commit ...

This commit is contained in:
2024-01-25 04:37:38 +03:30
commit c5d69522a9
26 changed files with 1252 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
using System;
namespace xModels.Interfaces {
/// <summary>
/// Some times we need to wrap Entities by some logs or audits ...
/// this class provide Audit fields for an Auditable Entity ...
/// </summary>
public interface IXAuditable {
string UserAgent { get; }
string UserIp { get; }
DateTime TransactionTime { get; }
}
}