summaryrefslogtreecommitdiff
path: root/Tag.cs
diff options
context:
space:
mode:
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
+}