EBS_POC/EBS POC/Models/Master_File.cs

23 lines
690 B
C#

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EBS_POC.Models
{
public class Master_File : INotifyPropertyChanged
{
public string HostName { get; set; } = "";
public string HostIP { get; set; } = "";
public List<Worker> WorkerList { get; set; } = new List<Worker>();
public event PropertyChangedEventHandler PropertyChanged;
public void FirePropertyChanged(string PropertyName)
{
PropertyChanged.Invoke(this, new PropertyChangedEventArgs(PropertyName));
}
}
}