using CommunityToolkit.Mvvm.ComponentModel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AIK.Models { /// /// 车牌品牌类 /// public partial class CarfactoryClass : ObservableObject { public string id { get; set; } /// /// 中文名称 /// public string brandName { get; set; } /// /// 英文 /// public string engName { get; set; } /// /// 葡萄牙 /// public string puName { get; set; } /// /// 西班牙 /// public string xiName { get; set; } /// /// 印度 /// public string inName { get; set; } /// /// 名称拼音 /// public string py { get; set; } [ObservableProperty] private bool _isSelected; } }