mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-03-27 11:25:48 -04:00
12 lines
367 B
C#
12 lines
367 B
C#
using ReactiveUI;
|
|
|
|
namespace HangoverAvalonia.ViewModels;
|
|
|
|
public class CheckBoxViewModel : ViewModelBase
|
|
{
|
|
private bool _isChecked;
|
|
public bool IsChecked { get => _isChecked; set => this.RaiseAndSetIfChanged(ref _isChecked, value); }
|
|
private object _bookText;
|
|
public object Item { get => _bookText; set => this.RaiseAndSetIfChanged(ref _bookText, value); }
|
|
}
|