IW4M-Admin/SharedLibraryCore/Interfaces/IAuditFields.cs

9 lines
153 B
C#
Raw Normal View History

using System;
namespace SharedLibraryCore.Interfaces
{
public interface IAuditFields
{
DateTime CreatedDateTime { get; set; }
}
}