Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Model / CounterDetecInit.cs
yangqianqian on 8 Apr 2021 624 bytes detail-setting-databackup complete
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Casic.Birmm.RbFreqStandMeasure.R_DataBase.Model
{
    class CounterDetecInit
    {
        private int id;

        private string frequency;

        private string cycle;

        public int Id
        {
            get
            {
                return id;
            }

            set
            {
                id = value;
            }
        }

       
        public string Frequency { get => frequency; set => frequency = value; }
        public string Cycle { get => cycle; set => cycle = value; }
    }
}