LMS.service/LMS.Repository/Forward/SimpleTransferModel.cs
lq1405 76b57c5717 新增get转发接口
新增Laitool 设置中的绘图设置
2025-02-22 15:00:25 +08:00

33 lines
708 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace LMS.Repository.Forward;
public class SimpleTransferModel
{
/// <summary>
/// GPT的完整地址
/// </summary>
public string url { get; set; }
/// <summary>
/// 对应的API站的使用的APIkey
/// </summary>
public string APIKey { get; set; }
/// <summary>
/// 实际的GPT请求的数据字符串直接序列化再传递就行
/// </summary>
public string dataString { get; set; }
}
public class GetTransferModel
{
/// <summary>
/// GPT的完整地址
/// </summary>
public string url { get; set; }
/// <summary>
/// 对应的API站的使用的APIkey
/// </summary>
public string? APIKey { get; set; }
}