20230724_MBJC_upperpc/ViewModels/BeaconViewModel.cs

31 lines
652 B
C#
Raw Normal View History

2024-01-19 05:04:06 +00:00
using _20230724_MBJC_upperpc.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _20230724_MBJC_upperpc.ViewModels
{
public class BeaconViewModel : NotifyBase
{
2024-01-22 05:36:57 +00:00
private BeaconModel beacon;
public BeaconModel Beacon
{
get { return beacon; }
set { beacon = value; this.DoNotify(); }
}
2024-01-19 05:04:06 +00:00
private int model_Visibility = 1;
public int Model_Visibility
{
get { return model_Visibility; }
set { model_Visibility = value; this.DoNotify(); }
}
}
}