Files @ a78dba5bed0e
Branch filter:

Location: ATITD-Tools/Desert-Paint-Codex/ViewModels/AboutViewModel.cs

Jason Maltzen
Add stub view model code for recipe library (future feature work)
using System.Reactive;
using ReactiveUI;

namespace DesertPaintCodex.ViewModels
{
    public class AboutViewModel : ViewModelBase
    {
        private const string AboutTextLiteral =
            @"Desert Paint Codex (formerly Desert Paint Lab) is an Open Source project available for free under the MIT License.";
        
        private string _aboutText = AboutTextLiteral;
        public string AboutText { get => _aboutText; private set => this.RaiseAndSetIfChanged(ref _aboutText, value); }

        public AboutViewModel()
        {
            CloseDialog = ReactiveCommand.Create(() => { });
        }
        
        public ReactiveCommand<Unit, Unit> CloseDialog { get; }
    }
}