Newer
Older
CaptureEye / IrisCtrl / Json / InitParam.cs
yxw on 14 Aug 2020 425 bytes first commt
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace IrisCtrl.Json
{
    class InitParam
    {

        private string white_brightness;

        public string White_brightness
        {
            get
            {
                return white_brightness;
            }

            set
            {
                white_brightness = value;
            }
        }

    }
}