namespace WingLiveConsultationService { public class RemoteNotifyTarget { public string ServerUrl {get;} public IList<string> ClientIds {get;} public RemoteNotifyTarget(string serverUrl) { ServerUrl = serverUrl; ClientIds = new List<string>(); } } }