From 7170867a9a2650fa5a98b9e2664fb2114a0bf114 Mon Sep 17 00:00:00 2001 From: Jake Mannens Date: Sat, 30 Sep 2023 00:52:18 +1000 Subject: Patched MemoryCache and DB schema --- HBObject.cs | 1 + 1 file changed, 1 insertion(+) (limited to 'HBObject.cs') diff --git a/HBObject.cs b/HBObject.cs index 2962adf..00ddfad 100644 --- a/HBObject.cs +++ b/HBObject.cs @@ -11,6 +11,7 @@ public class HBObject { public int ObjectId { get; set; } public Guid Guid { get; set; } = Guid.NewGuid(); public virtual List Tags { get; set; } = new(); + [ForeignKey("AclId")] public Acl? Acl { get; set; } public SecurityIdentifier Owner { get; set; } = new SecurityIdentifier(WellKnownSidType.WorldSid); -- cgit v1.3