BotSharp/BotSharp.Platform.Models/AiResponse/ResponseParameterPrompt.cs
2018-10-02 20:44:11 -05:00

19 lines
442 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace BotSharp.Platform.Models.AiResponse
{
public class ResponseParameterPrompt
{
[Required]
[StringLength(36)]
public String ResponseParameterId { get; set; }
[MaxLength(256)]
public string Prompt { get; set; }
}
}