using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FileWatcher { class Script { protected string m_Label; protected string m_EntryPoint; public string Label { get { return m_Label; } set { m_Label = value; } } public string EntryPoint { get { return m_EntryPoint; } set { m_EntryPoint = value; } } } }