Switching MessageId property from private to public #42

This commit is contained in:
FlorianDahn 2023-06-04 17:59:55 +02:00
parent f70531dd73
commit da8a2f630b
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ public class CalendarPicker : ControlBase
public CultureInfo Culture { get; set; }
private int? MessageId { get; set; }
public int? MessageId { get; set; }
public string Title { get; set; } = Default.Language["CalendarPicker_Title"];

View File

@ -23,7 +23,7 @@ public class TreeView : ControlBase
public string Title { get; set; }
private int? MessageId { get; set; }
public int? MessageId { get; set; }
public string MoveUpIcon { get; set; } = Default.Language["TreeView_LevelUp"];