using System; namespace xModels.Interfaces { /// /// Some times we need to wrap Entities by some logs or audits ... /// this class provide Audit fields for an Auditable Entity ... /// public interface IXAuditable { string UserAgent { get; } string UserIp { get; } DateTime TransactionTime { get; } } }