mirror of
https://github.com/egmont11/NetworkDiagram.git
synced 2026-07-24 07:09:43 +02:00
Fix an issue with exporting images, so now the descriptions will also appear there
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user