mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-05 08:46:35 +08:00
feat: 完成跨域处理
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
namespace Yi.Framework.AiHub.Application.Contracts.Dtos.OpenAiDto;
|
||||
|
||||
public class ModelGetOutput
|
||||
{
|
||||
public List<ModelDataOutput> Data { get; set; }
|
||||
}
|
||||
|
||||
public class ModelDataOutput
|
||||
{
|
||||
public string ModelId { get; set; }
|
||||
public string Object { get; set; }
|
||||
public string Owned_by { get; set; }
|
||||
public List<string> Permission { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user