Fix an issue with exporting images, so now the descriptions will also appear there

This commit is contained in:
Matěj Kubíček
2026-04-23 19:25:19 +02:00
parent 5efa49584d
commit b54df1fd4c
9 changed files with 79 additions and 19 deletions
+13
View File
@@ -38,6 +38,19 @@ namespace NetworkDiagram.Models
}
}
private string _description = string.Empty;
[JsonPropertyName("Description")]
public string Description
{
get => _description;
set
{
_description = value;
OnPropertyChanged();
}
}
[JsonPropertyName("TemplateName")]
public string TemplateName { get; set; } = string.Empty;