Newer
Older
CameraServer / CameraDb / model / AlarmHostParam.cs
yxw on 14 Aug 2020 673 bytes firstcommit sz
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace CameraDb.model
{
    public class AlarmHostParam
    {
        private Device device;
        private ListenParam listenParam;
        private LoginParam loginParam;

        public Device DEVICE
        {
            get { return device; }
            set { device = value; }
        }

        public ListenParam LITENPARAM
        {
            get { return listenParam; }
            set { listenParam = value; }
        }

        public LoginParam LOGINPARAM
        {
            get { return loginParam; }
            set { loginParam = value; }
        }

    }
}