using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sinvo.EplanHpD.Plugin.WPFUI.Datas
{
public class BrandData
{
///
/// 品牌名称
///
public string Name { get; set; }
///
/// 是否使用复合线
///
public bool ComplexLine { get; set; }
///
/// 使用的数据表
///
public string SheetName { get; set; }
///
/// 型号前缀
///
public string Prefix { get; set; }
///
/// 电机型号前缀
///
public string MotorPrefix { get; set; }
///
/// 型号后缀
///
public string Suffix { get; set; }
}
}