RemoteNotifyTarget.cs 349 B

1234567891011121314
  1. namespace WingLiveConsultationService
  2. {
  3. public class RemoteNotifyTarget
  4. {
  5. public string ServerUrl {get;}
  6. public IList<string> ClientIds {get;}
  7. public RemoteNotifyTarget(string serverUrl)
  8. {
  9. ServerUrl = serverUrl;
  10. ClientIds = new List<string>();
  11. }
  12. }
  13. }