Newer
Older
CaptureEye / IrisCtrl / Json / StartParam.cs
yxw on 14 Aug 2020 474 bytes first commt
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;
            }
        }
    }
}