diff options
Diffstat (limited to 'Tag.cs')
| -rw-r--r-- | Tag.cs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 +} |
