summaryrefslogtreecommitdiff
path: root/Tag.cs
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-05-09 02:54:42 +1000
committerJake Mannens <jake@asger.xyz>2026-05-09 02:54:42 +1000
commita565ebb08901e9d1854f8bcfc669063ddea49bce (patch)
tree5b190037a582db86b7bbcf9a669afffa615b2f02 /Tag.cs
parenta45ad8d3f8da273f80029ba6d34beb7e4ff7d7b5 (diff)
v0.15av0.15a
Diffstat (limited to 'Tag.cs')
-rw-r--r--Tag.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tag.cs b/Tag.cs
index 172fe8d..c857c66 100644
--- a/Tag.cs
+++ b/Tag.cs
@@ -11,7 +11,7 @@ public class TagDefinition : HBObject {
public TagSource Source { get; set; } = TagSource.Internal;
public string? Namespace { get; set; }
public string Name { get; set; }
- public string? Alias { get; set;}
+ public string? Alias { get; set; }
public virtual List<TagDefinition> ImplicitTags { get; set; } = new();
public static explicit operator ApiModels.TagDefinition(TagDefinition tagDefinition) => new() {
@@ -34,4 +34,4 @@ public class Tag : HBObject {
public Tag(TagDefinition tagDef) =>
this.TagDefinition = tagDef;
-} \ No newline at end of file
+}