diff options
| author | Jake Mannens <jake@asger.xyz> | 2023-08-16 14:19:33 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2023-08-16 14:19:33 +1000 |
| commit | 596f79318b41b7da60da0f82794f56f306842973 (patch) | |
| tree | a6523f99fa70ea6da1780347201e06943f56778f /Tag.cs | |
| parent | 8e94a12be4a56447e78d68c37def772bef8cade4 (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 |
