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

20 lines
439 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace BotSharp.Platform.Models.Intents
{
public class IntentInputContext
{
[Required]
[StringLength(36)]
public String IntentId { get; set; }
[Required]
[MaxLength(64)]
public string Name { get; set; }
}
}