diff options
| author | Jake Mannens <jake@asger.xyz> | 2026-05-09 02:54:42 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2026-05-09 02:54:42 +1000 |
| commit | a565ebb08901e9d1854f8bcfc669063ddea49bce (patch) | |
| tree | 5b190037a582db86b7bbcf9a669afffa615b2f02 /Tag.cs | |
| parent | a45ad8d3f8da273f80029ba6d34beb7e4ff7d7b5 (diff) | |
v0.15av0.15a
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 +} |
