BotSharp/BotSharp.Platform.Models/Intents/IntentEvent.cs

19 lines
413 B
C#
Raw Normal View History

2018-10-03 01:44:11 +00:00
using System;
2018-07-12 15:07:05 +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.Intents
2018-07-12 15:07:05 +00:00
{
2018-10-03 01:44:11 +00:00
public class IntentEvent
2018-07-12 15:07:05 +00:00
{
[Required]
[StringLength(36)]
public String IntentId { get; set; }
[MaxLength(64)]
public String Name { get; set; }
}
}