9 lines
153 B
C#
9 lines
153 B
C#
using System;
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
public interface IAuditFields
|
|
{
|
|
DateTime CreatedDateTime { get; set; }
|
|
}
|
|
} |