123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Media;
- namespace HistoryDLL
- {
- public partial class DataCollect
- {
- [JsonProperty("MainBackgroundCollect")]
- public MainBackground MainBackgroundCollect { get; set; }
- [JsonProperty("TimelineCollect")]
- public Timeline TimelineCollect { get; set; }
- [JsonProperty("TimelineExtentCollect")]
- public TimelineExtent TimelineExtentCollect { get; set; }
- [JsonProperty("EventCollect")]
- public Event EventCollect { get; set; }
- [JsonProperty("EventContentCollect")]
- public EventContent EventContentCollect { get; set; }
- [JsonProperty("ButtonSelectCollect")]
- public ButtonSelect ButtonSelectCollect { get; set; }
- }
- public partial class MainBackground
- {
- [JsonProperty("BackgroundColor")]
- public Color BackgroundColor { get; set; }
- [JsonProperty("BackgroundColorPoint")]
- public Point? BackgroundColorPoint { get; set; }
- [JsonProperty("ImgBackground")]
- public string ImgBackground { get; set; }
- [JsonProperty("ImgLogo")]
- public string ImgLogo { get; set; }
- [JsonProperty("LangText")]
- public string[] LangText { get; set; }
- [JsonProperty("LangFlowDir")]
- public FlowDirection[] LangFlowDir { get; set; }
- [JsonProperty("DefaultLangIndex")]
- public int DefaultLangIndex { get; set; }
- [JsonProperty("BackHomeMillisecond")]
- public int BackHomeMillisecond { get; set; }
- [JsonProperty("ScreenSetting")]
- public int ScreenSetting { get; set; }
- [JsonProperty("IsUsing4kResolution")]
- public bool IsUsing4kResolution { set; get; }
- }
- public partial class Timeline
- {
- [JsonProperty("TextColor")]
- public Color TextColor { get; set; }
- [JsonProperty("TextColorPoint")]
- public Point? TextColorPoint { get; set; }
- [JsonProperty("BackgroundColor")]
- public Color BackgroundColor { get; set; }
- [JsonProperty("BackgroundColorPoint")]
- public Point? BackgroundColorPoint { get; set; }
- [JsonProperty("ThicknessColor")]
- public Color ThicknessColor { get; set; }
- [JsonProperty("ThicknessColorPoint")]
- public Point? ThicknessColorPoint { get; set; }
- }
- public partial class Event
- {
- [JsonProperty("TextColor")]
- public Color TextColor { get; set; }
- [JsonProperty("TextColorPoint")]
- public Point? TextColorPoint { get; set; }
- [JsonProperty("BackgroundColor")]
- public Color BackgroundColor { get; set; }
- [JsonProperty("BackgroundColorPoint")]
- public Point? BackgroundColorPoint { get; set; }
- [JsonProperty("ThicknessColor")]
- public Color ThicknessColor { get; set; }
- [JsonProperty("ThicknessColorPoint")]
- public Point? ThicknessColorPoint { get; set; }
- }
- public partial class EventContent
- {
- [JsonProperty("TextColor")]
- public Color TextColor { get; set; }
- [JsonProperty("TextColorPoint")]
- public Point? TextColorPoint { get; set; }
- [JsonProperty("BackgroundColor")]
- public Color BackgroundColor { get; set; }
- [JsonProperty("BackgroundColorPoint")]
- public Point? BackgroundColorPoint { get; set; }
- [JsonProperty("ThicknessColor")]
- public Color ThicknessColor { get; set; }
- [JsonProperty("ThicknessColorPoint")]
- public Point? ThicknessColorPoint { get; set; }
- }
- public partial class TimelineExtent
- {
- [JsonProperty("TextColor")]
- public Color TextColor { get; set; }
- [JsonProperty("TextColorPoint")]
- public Point? TextColorPoint { get; set; }
- [JsonProperty("BackgroundColor")]
- public Color BackgroundColor { get; set; }
- [JsonProperty("BackgroundColorPoint")]
- public Point? BackgroundColorPoint { get; set; }
- [JsonProperty("ThicknessColor")]
- public Color ThicknessColor { get; set; }
- [JsonProperty("ThicknessColorPoint")]
- public Point? ThicknessColorPoint { get; set; }
- }
- public partial class ButtonSelect
- {
- [JsonProperty("TextColor")]
- public Color TextColor { get; set; }
- [JsonProperty("TextColorPoint")]
- public Point? TextColorPoint { get; set; }
- [JsonProperty("TextColorUnselect")]
- public Color TextColorUnselect { get; set; }
- [JsonProperty("TextColorUnselectPoint")]
- public Point? TextColorUnselectPoint { get; set; }
- [JsonProperty("BackgroundColor")]
- public Color BackgroundColor { get; set; }
- [JsonProperty("BackgroundColorPoint")]
- public Point? BackgroundColorPoint { get; set; }
- [JsonProperty("BackgroundColorUnselect")]
- public Color BackgroundColorUnselect { get; set; }
- [JsonProperty("BackgroundColorUnselectPoint")]
- public Point? BackgroundColorUnselectPoint { get; set; }
- }
- }
|