13 lines
371 B
C#
13 lines
371 B
C#
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; }
|
|
}
|
|
} |