12345678910111213141516171819202122232425 |
- using MessagePack;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HaBookCms.Response
- {
- [MessagePackObject(keyAsPropertyName: true)]
- public class TimeStampResponse
- {
- public long responseTime = (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000;
- public TimeStampResponse()
- {
- }
- public long getResponseTime()
- {
- return this.responseTime;
- }
- public void setResponseTime(long responseTime)
- {
- this.responseTime = responseTime;
- }
- }
- }
|