21 lines
531 B
C#
21 lines
531 B
C#
using System;
|
|
using ReactiveUI.SourceGenerators;
|
|
|
|
namespace Flawless.Client.Models;
|
|
|
|
[Serializable]
|
|
public partial class AppSettingModel : ReactiveModel
|
|
{
|
|
[Reactive, NonSerialized]
|
|
private string _repositoryPath = AppDefaultValues.DefaultRepositoryDirectory;
|
|
|
|
[Reactive, NonSerialized] private bool
|
|
_refreshWorkspaceOnOpen = true,
|
|
_refreshWorkspaceOnFilesystemChanges = true;
|
|
|
|
|
|
[Reactive, NonSerialized] private string _diffTool;
|
|
|
|
|
|
[Reactive, NonSerialized] private string _fileManagerTool;
|
|
} |