Redo entities and configs, plus dummy aspnet identity config

This commit is contained in:
lumijiez
2025-05-26 13:10:38 +03:00
parent 03daae5b50
commit e8c5fbb5cc
33 changed files with 3986 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
namespace Printbase.Domain.Entities;
public abstract class EntityBase
{
public Guid Id { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime ModifiedAt { get; set; }
public string CreatedBy { get; set; }
public string ModifiedBy { get; set; }
}