Files

9 lines
230 B
C#
Raw Permalink Normal View History

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