BotSharp/BotSharp.Platform.Models/Intents/IntentResponseContext.cs

21 lines
474 B
C#
Raw Normal View History

2018-10-03 01:44:11 +00:00
using System;
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.Intents
{
2018-10-03 01:44:11 +00:00
public class IntentResponseContext
{
[Required]
[StringLength(36)]
public String IntentResponseId { get; set; }
[MaxLength(64)]
public string Name { get; set; }
public int Lifespan { get; set; }
}
}