BotSharp/BotSharp.Platform.Models/AiResponse/ResponseParameterPrompt.cs

19 lines
442 B
C#
Raw Normal View History

2018-10-03 01:44:11 +00:00
using System;
2018-06-07 05:53:38 +00:00
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
2018-10-03 01:44:11 +00:00
namespace BotSharp.Platform.Models.AiResponse
2018-06-07 05:53:38 +00:00
{
2018-10-03 01:44:11 +00:00
public class ResponseParameterPrompt
2018-06-07 05:53:38 +00:00
{
[Required]
[StringLength(36)]
public String ResponseParameterId { get; set; }
[MaxLength(256)]
public string Prompt { get; set; }
}
}