Api/NetinaShop.Common/Models/Entity/IApiEntity.cs

13 lines
336 B
C#

namespace NetinaShop.Common.Models.Entity
{
public interface IApiEntity
{
string CreatedBy { get; }
string ModifiedBy { get; }
string RemovedBy { get; }
bool IsRemoved { get; }
DateTime CreatedAt { get; }
DateTime RemovedAt { get; }
DateTime ModifiedAt { get; }
}
}