22 lines
399 B
C#
22 lines
399 B
C#
using Common.Library;
|
|
|
|
namespace GreadyPoang.ViewModelLayer;
|
|
|
|
public class AppShellViewModel : ViewModelBase
|
|
{
|
|
|
|
private bool _roundRounningVisible = true;
|
|
|
|
public bool RoundRunningVisible
|
|
{
|
|
get { return _roundRounningVisible; }
|
|
set
|
|
{
|
|
_roundRounningVisible = value;
|
|
RaisePropertyChanged(nameof(RoundRunningVisible));
|
|
}
|
|
}
|
|
|
|
|
|
}
|