diff options
| author | Jake Mannens <jake@asger.xyz> | 2023-08-16 14:19:33 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2025-08-18 10:59:32 +1000 |
| commit | acd4ca24259da98839847130bf34a27d10b0cf9f (patch) | |
| tree | a493ec45586f4b80e4125a066e842b8e86546341 /Tag.cs | |
| parent | 38c60cee378b9c2ad42fc9dc79bc492b919a68f5 (diff) | |
Fixed most existing dialogs
Diffstat (limited to 'Tag.cs')
| -rw-r--r-- | Tag.cs | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -19,4 +19,9 @@ public class Tag : HBObject { public virtual TagDefinition TagDefinition { get; set; } public DateTime CreateTime { get; set; } = DateTime.Now; public virtual HBObject Target { get; set; } + + public Tag() {} + + public Tag(TagDefinition tagDef) => + this.TagDefinition = tagDef; }
\ No newline at end of file |
