aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/Data/Database/BaseWithOwner.cs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/Data/Database/BaseWithOwner.cs')
-rw-r--r--server/src/Data/Database/BaseWithOwner.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/server/src/Data/Database/BaseWithOwner.cs b/server/src/Data/Database/BaseWithOwner.cs
deleted file mode 100644
index 1eb99f4..0000000
--- a/server/src/Data/Database/BaseWithOwner.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-namespace IOL.GreatOffice.Api.Data.Database;
-
-/// <summary>
-/// Base class for all entities.
-/// </summary>
-public class BaseWithOwner : Base
-{
- protected BaseWithOwner() { }
-
- protected BaseWithOwner(Guid userId) {
- UserId = userId;
- }
-
- public Guid? UserId { get; set; }
- public Guid? TenantId { get; init; }
- public Guid? ModifiedById { get; init; }
- public Guid? CreatedById { get; init; }
- public Guid? DeletedById { get; init; }
-} \ No newline at end of file