Files
Samuele Locatelli 56cb0966fe Completato fixApp x gestione ConfIOB:
- aggiunta tags su richiesta
2022-12-28 12:49:30 +01:00

34 lines
729 B
C#

namespace ConfMan.IOB.Core
{
public class HostInfo
{
#region Public Constructors
/// <summary>
/// Init classe default
/// </summary>
public HostInfo()
{ }
#endregion Public Constructors
#region Public Properties
/// <summary>
/// Indirizzo Ip dell'HOST
/// </summary>
public string HostAddr { get; set; } = "127.0.0.1";
/// <summary>
/// Nome Host
/// </summary>
public string HostName { get; set; } = "localhost";
/// <summary>
/// Sistema Operativo
/// </summary>
public string OS { get; set; } = "WIN";
#endregion Public Properties
}
}