Files
ClashWidget/Models/AppConfig.cs
T
2026-05-08 11:59:26 +08:00

12 lines
356 B
C#

namespace ClashWidget.Models;
public class AppConfig
{
public string ApiHost { get; set; } = "0.0.0.0";
public int ApiPort { get; set; } = 9090;
public string ApiSecret { get; set; } = "123456";
public string TestUrl { get; set; } = "https://www.gstatic.com/generate_204";
public string ApiBaseUrl => $"http://{ApiHost}:{ApiPort}";
}