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; } } }