123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HTEXScan.Models
- {
- /**模板快**/
- public class TemplateCell
- {
- /**x**/
- [JsonProperty(PropertyName = "x")]
- public int X
- {
- get;
- set;
- }
- /**y**/
- [JsonProperty(PropertyName = "y")]
- public int Y
- {
- get;
- set;
- }
- /**w**/
- [JsonProperty(PropertyName = "w")]
- public int W
- {
- get;
- set;
- }
- /**h**/
- [JsonProperty(PropertyName = "h")]
- public int H
- {
- get;
- set;
- }
- /**text**/
- [JsonProperty(PropertyName = "text")]
- public char Text
- {
- get;
- set;
- }
- /**type**/
- [JsonProperty(PropertyName = "type")]
- public int Type
- {
- get;
- set;
- }
- /**text**/
- [JsonProperty(PropertyName = "col")]
- public int Col
- {
- get;
- set;
- }
- }
- /**模板**/
- public class Template
- {
- /**rw**/
- [JsonProperty(PropertyName = "rw")]
- public int Rw
- {
- get;
- set;
- }
- /**rh**/
- [JsonProperty(PropertyName = "rh")]
- public int Rh
- {
- get;
- set;
- }
- /**w**/
- [JsonProperty(PropertyName = "w")]
- public int W
- {
- get;
- set;
- }
- /**h**/
- [JsonProperty(PropertyName = "h")]
- public int H
- {
- get;
- set;
- }
- /**bw**/
- [JsonProperty(PropertyName = "bw")]
- public int Bw
- {
- get;
- set;
- }
- /**bh**/
- [JsonProperty(PropertyName = "bh")]
- public int Bh
- {
- get;
- set;
- }
- /**bx**/
- [JsonProperty(PropertyName = "bx")]
- public int Bx
- {
- get;
- set;
- }
- /**by**/
- [JsonProperty(PropertyName = "by")]
- public int By
- {
- get;
- set;
- }
- /**cell**/
- [JsonProperty(PropertyName = "cell")]
- public List<TemplateCell> Cell
- {
- get;
- set;
- }
- }
- }
|