24 lines
527 B
C#
24 lines
527 B
C#
|
|
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
|
|||
|
|
{
|
|||
|
|
public BeaconModel Beacon = new BeaconModel();
|
|||
|
|
|
|||
|
|
private int model_Visibility = 1;
|
|||
|
|
|
|||
|
|
public int Model_Visibility
|
|||
|
|
{
|
|||
|
|
get { return model_Visibility; }
|
|||
|
|
set { model_Visibility = value; this.DoNotify(); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|