12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDFSettings
- {
- public class ProductActiveInfo
- {
-
-
-
- public string DeviceId { get; set; } = string.Empty;
-
-
-
- public string Version { get; set; } = string.Empty;
-
-
-
- public string SerialNumber { get; set; } = string.Empty;
-
-
-
- public int ActiveStatue { get; set; }
-
-
-
- public long TrailStart { get; set; }
-
-
-
- public long TrailEnd { get; set; }
-
-
-
- public string ProductCode { get; set; }=string.Empty;
- }
- public class ProductActiveStore
- {
-
-
-
- public string SignData { get; set; } = string.Empty;
-
-
-
- public string CheckSum { get; set; } = string.Empty;
-
-
-
- public DateTime UpdateTime { get; set; }
- }
- }
|