13 lines
334 B
C#
13 lines
334 B
C#
using AutoMapper.Configuration.Conventions;
|
|
|
|
namespace xAiService.Models
|
|
{
|
|
public class XAILLMDescriptor
|
|
{
|
|
public string Url { get; set; }
|
|
public string Port { get; set; }
|
|
public string Name { get; set; }
|
|
public string Client { get; set; }
|
|
public string Descriptor { get; set; }
|
|
}
|
|
} |