Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Sep 22, 2024
1 parent 82d06b0 commit dba4cce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ public CustomSettingViewModel(CustomSetting setting)
Setting = setting;
}

public CustomSetting Setting { get; }
public override CustomSetting Setting { get; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ namespace OneWare.Settings.ViewModels.SettingTypes;

public abstract class SettingViewModel : ObservableObject
{
public Setting Setting { get; }
public abstract Setting Setting { get; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ protected TitledSettingViewModel(TitledSetting setting)
Setting = setting;
}

public new TitledSetting Setting { get; }
public override TitledSetting Setting { get; }

public bool IsEnabled
{
Expand Down

0 comments on commit dba4cce

Please sign in to comment.