mirror of
https://github.com/BlossomiShymae/Needlework.Net.git
synced 2025-12-06 10:10:48 +01:00
14 lines
310 B
C#
14 lines
310 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace Needlework.Net.DataModels
|
|
{
|
|
public partial class AppSettings : ObservableObject
|
|
{
|
|
[ObservableProperty]
|
|
private bool _isCheckForUpdates = true;
|
|
|
|
[ObservableProperty]
|
|
private bool _isCheckForSchema = true;
|
|
}
|
|
}
|