Add MdnsService class
This commit is contained in:
parent
4d19930da6
commit
5c4ada28f9
|
@ -0,0 +1,23 @@
|
|||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public class MdnsService
|
||||
{
|
||||
public string IpAddress { get; set; }
|
||||
public int Port { get; set; }
|
||||
public string Path { get; set; }
|
||||
public string Host { get; set; }
|
||||
|
||||
public MdnsService(string ipAddress, int port, string path, string host)
|
||||
{
|
||||
IpAddress = ipAddress;
|
||||
Port = port;
|
||||
Path = path;
|
||||
Host = host;
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return $"IpAddress: {IpAddress}, Port: {Port}, Path: {Path}, Host: {Host}";
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 4212f348ab4781a49989213c94144fc5
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Loading…
Reference in New Issue