11 lines
271 B
C#
11 lines
271 B
C#
using System;
|
|
using ReactiveUI.SourceGenerators;
|
|
|
|
namespace Flawless.Client.Models;
|
|
|
|
[Serializable]
|
|
public partial class AppSettingModel : ReactiveModel
|
|
{
|
|
[Reactive, NonSerialized]
|
|
private string _repositoryPath = AppDefaultValues.DefaultRepositoryDirectory;
|
|
} |