api/NetinaCMS.Common/Models/Entity/IApiEntity.cs

13 lines
335 B
C#
Raw Permalink Normal View History

2024-03-24 12:35:42 +03:30
namespace NetinaCMS.Common.Models.Entity
2024-03-09 19:53:01 +03:30
{
public interface IApiEntity
{
string CreatedBy { get; }
string ModifiedBy { get; }
string RemovedBy { get; }
bool IsRemoved { get; }
DateTime CreatedAt { get; }
DateTime RemovedAt { get; }
DateTime ModifiedAt { get; }
}
}