//we will not use property for this to avoid serialization public DateTime GetTimestamp() { return(UnixEpoch.FromUnixTime(this._timestamp)); }
//we will not use property for this to avoid serialization public void SetTimestamp(DateTime timestamp) { this._timestamp = UnixEpoch.ToUnixTime(timestamp); }