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

13 lines
332 B
C#
Raw Permalink Normal View History

2024-04-16 20:01:34 +03:30
namespace Netina.Common.Models.Entity
2023-12-16 20:25:12 +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; }
}
}