BotSharp/BotSharp.Core/Intents/ResponseParameterPrompt.cs

21 lines
528 B
C#
Raw Normal View History

2018-06-07 05:53:38 +00:00
using EntityFrameworkCore.BootKit;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace BotSharp.Core.Intents
{
[Table("Bot_ResponseParameterPrompt")]
public class ResponseParameterPrompt : DbRecord, IDbRecord
{
[Required]
[StringLength(36)]
public String ResponseParameterId { get; set; }
[MaxLength(256)]
public string Prompt { get; set; }
}
}