using CommunityToolkit.Mvvm.ComponentModel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AIK.Models.ApiModels.Brand { public partial class KzInfo : ObservableObject { /// /// bin文件地址 /// public string binAddress { get; set; } /// /// 修改bin文件位置数组 /// public List binAddressArray { get; set; } /// /// 芯片类型 /// public string chipType { get; set; } /// /// 是否云遥控 /// public bool cloudRemote { get; set; } /// /// 是否为电子芯片 /// public bool dzxp { get; set; } /// /// 固件编号 /// public string firmwareNo { get; set; } /// /// 是否特殊C子机bin文件 /// public bool fixedByte { get; set; } /// /// 特殊C子机bin文件修改位置数组 /// public List fixedByteArray { get; set; } /// /// 特殊C子机bin文件修改固定数据 /// public string fixedByteArrays { get; set; } /// /// 固件信息包下载地址 /// public string sourceUrl { get; set; } /// /// 是否特殊子机 /// public bool sp { get; set; } /// /// 子机code /// public string spCode { get; set; } /// /// 是否使用特殊随机数 /// public bool tsRand { get; set; } /// /// 特殊随机数字符 /// public string tsRandStr { get; set; } /// /// 所属子机类型 /// public string type { get; set; } /// /// 是否修改bin文件 /// public bool updateByte { get; set; } /// /// 可用子机(可对应多个子机) /// public string usable { get; set; } /// /// 未知用途字段(保留) /// public string ysSource { get; set; } /// /// 未知用途字段(保留) /// public string ysSourceNo { get; set; } /// /// 遥控再生类型ID /// public string zsId { get; set; } } }