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; } } } }