Initial commit, basic work

This commit is contained in:
Alex
2025-01-05 02:12:38 +00:00
parent 85085204c4
commit 76f9830a7e
27 changed files with 868 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
namespace Types.Models.Config;
public class HttpConfig
{
public int Port { get; set; }
public string Ip { get; set; }
}