using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace UAS_PLCDataReader.PublicMethod { class PollingTimer : System.Timers.Timer { private object polling; public object Polling { get { return polling; } set { polling = value; } } } }