using System; namespace Krs.Ats.IBNet { /// /// Update Account Time Event Arguments /// [Serializable()] public class UpdateAccountTimeEventArgs : EventArgs { private string timestamp; /// /// Full Constructor /// /// Current system time on the server side. public UpdateAccountTimeEventArgs(string timestamp) { this.timestamp = timestamp; } /// /// Uninitialized Constructor for Serialization /// public UpdateAccountTimeEventArgs() { } /// /// Current system time on the server side. /// public string Timestamp { get { return timestamp; } set { timestamp = value; } } } }