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.
40 lines
700 B
40 lines
700 B
using System;
|
|
|
|
namespace EC.AutoWeightServer.Model.EventArgsEx
|
|
{
|
|
public class PlateEventArgs : EventArgs
|
|
{
|
|
private string plate;
|
|
private string plateColor;
|
|
private string fileName;
|
|
|
|
//事件参数重载
|
|
public PlateEventArgs(string plate, string plateColor, string fileName = "")//当输入内容为字符
|
|
{
|
|
this.plate = plate;
|
|
this.plateColor = plateColor;
|
|
this.fileName = fileName;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 车牌
|
|
/// </summary>
|
|
public string Plate
|
|
{
|
|
get { return plate; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 车牌颜色
|
|
/// </summary>
|
|
public string PlateColor
|
|
{
|
|
get { return plateColor; }
|
|
}
|
|
|
|
public string FileName
|
|
{
|
|
get { return fileName; }
|
|
}
|
|
}
|
|
}
|