Update to .NET 10

This commit is contained in:
2026-02-25 11:11:50 -05:00
parent a73a583ed7
commit aa9a7ef568
4 changed files with 8 additions and 11 deletions

View File

@@ -16,17 +16,15 @@ public class TimeZoneEntry : INotifyDataErrorInfo
_dataErrorDictionary.ErrorsChanged += DataErrorDictionaryErrorsChanged;
}
private string _label;
public string Label
{
get => _label;
get;
set
{
if (!ValidateLabel(value))
return;
_label = value;
field = value;
}
}