Skip to content

Commit fe0b201

Browse files
committed
Replaced screen inheritance from my models to propertychangedbase
1 parent 718e7a1 commit fe0b201

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

CutCode/Models/CodeBoxModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
namespace CutCode
1212
{
13-
public class CodeBoxModel : Screen
13+
public class CodeBoxModel : PropertyChangedBase
1414
{
1515
public int id { get; set; }
1616
private string _title;

CutCode/Models/SideBarBtnModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public static class SideBarBtns
1515
public static List<string> SideBarBtnsLightTheme = new List<string>() { "home_black.png", "add_black.png", "fav_black.png", "settings_black.png" };
1616

1717
}
18-
public class SideBarBtnModel : Screen
18+
public class SideBarBtnModel : PropertyChangedBase
1919
{
2020
private readonly IThemeService themeService;
2121
private List<string> btnBothimages = new List<string>();

CutCode/Models/ThemeButtonModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace CutCode
1010
{
11-
public class ThemeButtonModel : Screen
11+
public class ThemeButtonModel : PropertyChangedBase
1212
{
1313
private readonly IThemeService themeService;
1414
public ThemeButtonModel(string _text, IThemeService _themeService)

CutCode/Release/CutCode Installer.exe

-7.31 MB
Binary file not shown.

0 commit comments

Comments
 (0)