Add MdnsService class

This commit is contained in:
Santiago Lo Coco 2024-11-03 14:26:51 +01:00
parent 4d19930da6
commit 5c4ada28f9
2 changed files with 34 additions and 0 deletions

View File

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

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 4212f348ab4781a49989213c94144fc5
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant: