feat: создана структура проекта, core, domain, infrastructure. Перенесены enum и task согласно архитектуры
This commit is contained in:
12
PARR.Domain/Entities/Base/IBaseEntity.cs
Normal file
12
PARR.Domain/Entities/Base/IBaseEntity.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
namespace PARR.Domain.Entities.Base
|
||||
{
|
||||
public interface IBaseEntity : IBaseEntityDateCreated, IBaseEntityDateModified
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
|
||||
//DateTimeOffset DateCreated { get; set; }
|
||||
|
||||
//DateTimeOffset? DateModified { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user