16 lines
464 B
C#
16 lines
464 B
C#
|
|
namespace WD7UVN_HFT_2023241.Models
|
|||
|
|
{
|
|||
|
|
internal class Service
|
|||
|
|
{
|
|||
|
|
public int ID { get; set; }
|
|||
|
|
public int MAINTAINER { get; set; }
|
|||
|
|
public string NAME { get; set; }
|
|||
|
|
public int? VERSION { get; set; }
|
|||
|
|
public string? ACCOUNT { get; set; }
|
|||
|
|
public string? NOTES { get; set; }
|
|||
|
|
public string? SERVICE_DOMAIN { get; set; }
|
|||
|
|
public string? IP { get; set; }
|
|||
|
|
public int? PORT { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|