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; }
|
|
} |