Walle.Api/AI.Common/Dtos/PromptDto.cs

17 lines
358 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AI.Common.Dtos
{
public class PromptDto
{
public long Id { get; set; }
public string Name { get; set; }
public string Prompt { get; set; }
public DateTime CreateTime { get; set; }
}
}