mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-17 15:06:37 +08:00
14 lines
357 B
C#
14 lines
357 B
C#
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; }
|
|
} |