1313
1414namespace UniGetUI . Interface . Pages
1515{
16- public class OperationHistoryEntry
16+ public class AdvancedOperationHistoryEntry
1717 {
18- public string Title { get ; set ; }
19- public string Content { get ; set ; }
18+ public required string Title { get ; set ; }
19+ public required string Content { get ; set ; }
2020 }
2121
2222 public partial class AdvancedOperationHistoryPage : IKeyboardShortcutListener , IEnterLeaveListener
2323 {
24- private ObservableCollection < OperationHistoryEntry > Items = new ( ) ;
24+ private ObservableCollection < AdvancedOperationHistoryEntry > Items = new ( ) ;
2525
2626 public AdvancedOperationHistoryPage ( )
2727 {
@@ -34,11 +34,11 @@ private void LoadOperationHistory()
3434 {
3535 Items . Clear ( ) ;
3636
37- Items . Add ( new OperationHistoryEntry { Title = "Test 1" , Content = "Content 1" } ) ;
38- Items . Add ( new OperationHistoryEntry { Title = "Test 2" , Content = "Content 2" } ) ;
39- Items . Add ( new OperationHistoryEntry { Title = "Test 3" , Content = "Content 3" } ) ;
40- Items . Add ( new OperationHistoryEntry { Title = "Test 4" , Content = "Content 4" } ) ;
41- Items . Add ( new OperationHistoryEntry { Title = "Test 5" , Content = "Content 5" } ) ;
37+ Items . Add ( new AdvancedOperationHistoryEntry { Title = "Test 1" , Content = "Content 1" } ) ;
38+ Items . Add ( new AdvancedOperationHistoryEntry { Title = "Test 2" , Content = "Content 2" } ) ;
39+ Items . Add ( new AdvancedOperationHistoryEntry { Title = "Test 3" , Content = "Content 3" } ) ;
40+ Items . Add ( new AdvancedOperationHistoryEntry { Title = "Test 4" , Content = "Content 4" } ) ;
41+ Items . Add ( new AdvancedOperationHistoryEntry { Title = "Test 5" , Content = "Content 5" } ) ;
4242 }
4343
4444 public void ReloadTriggered ( )
0 commit comments