public void AddTags(string tag) { Tags?.Add(tag); Tags = Tags; } public void RemoveTag(string tag) { Tags?.Remove(tag); Tags = Tags; } private HashSet<String>? Tags { get; set; }