Files

9 lines
230 B
C#
Raw Permalink Normal View History

2025-12-25 11:20:56 +08:00
namespace Service.AppSettingModel;
2026-01-18 22:04:56 +08:00
public class AiSettings
2025-12-25 11:20:56 +08:00
{
public string Endpoint { get; set; } = string.Empty;
public string Key { get; set; } = string.Empty;
public string Model { get; set; } = string.Empty;
}