Fixed bug that would not allow the creation of a new Service

This commit is contained in:
TypoMustakes
2024-01-09 14:44:35 +01:00
parent 029026658b
commit 54c1837a23

View File

@@ -21,7 +21,7 @@ namespace WD7UVN_HFT_2023241.Models
public string SERVICE_DOMAIN { get; set; }
[StringLength(240)]
public string IP { get; set; }
[StringLength(240)]
[Range(0, 65535)]
public int PORT { get; set; }
}
}