You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
928 B
34 lines
928 B
using AIK.Models.ApiModels.Brand;
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AIK.Models
|
|
{
|
|
/// <summary>
|
|
/// 车辆品牌钥匙类型以及详情获取
|
|
/// </summary>
|
|
public partial class VehModelClass : ObservableObject
|
|
{
|
|
public int ID { get; set; }
|
|
/// <summary>
|
|
/// 中文名称
|
|
/// </summary>
|
|
public string typeName { get; set; }
|
|
public string typeEngName { get; set; }
|
|
public string typePuName { get; set; }
|
|
public string typeXiName { get; set; }
|
|
public string typeInName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 车钥匙详情集合数据
|
|
/// </summary>
|
|
public List<VehKeyClass> modelList { get; set; }
|
|
|
|
[ObservableProperty]
|
|
private bool _isSelected;
|
|
}
|
|
}
|
|
|