9 lines
230 B
C#
9 lines
230 B
C#
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;
|
|
}
|