Newer
Older
BRServer / BRServer.Model / Config.cs
root on 30 Mar 2020 899 bytes elec first commit
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace BRServer.Model
{
    public class Config
    {
        private string devcode;
        private string ip;
        private UInt16 port;
        private UInt16 interval;
        private bool status;

        public string DEVCODE
        {
            get { return devcode; }
            set { devcode = value; }
        }

        public string IP
        {
            get { return ip; }
            set { ip = value; }
        }

        public UInt16 PORT
        {
            get { return port; }
            set { port = value; }
        }

        public UInt16 INTERVAL
        {
            get { return interval; }
            set { interval = value; }
        }

        public bool STATUS
        {
            get { return status; }
            set { status = value; }
        }
    }
}