From ccad8db591129f5a9effb6469b477bb5c23ee229 Mon Sep 17 00:00:00 2001 From: Jake Mannens Date: Wed, 20 Sep 2023 11:45:46 +1000 Subject: Completed initial filter functionality --- Principal.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'Principal.cs') diff --git a/Principal.cs b/Principal.cs index d736bf2..18b82d0 100644 --- a/Principal.cs +++ b/Principal.cs @@ -4,13 +4,12 @@ namespace HyperBooru; [Index(nameof(Name))] public class HBPrincipal : HBObject { - public string Name { get; set; } + public string Name { get; set; } + public List MemberOf { get; set; } } public class User : HBPrincipal { public string PasswordHash { get; set; } } -public class Group : HBPrincipal { - public List Members { get; set; } -} \ No newline at end of file +public class Group : HBPrincipal {} \ No newline at end of file -- cgit v1.3