using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IrisCtrl.Json { class StartParam { /// <summary> /// 1右眼、2左眼、3双眼 /// </summary> private string eyeType; public string EyeType { get { return eyeType; } set { eyeType = value; } } } }