23 lines
462 B
C#
23 lines
462 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BotSharp.Core.Models
|
|
{
|
|
public class RasaIntentExpression
|
|
{
|
|
public RasaIntentExpression()
|
|
{
|
|
}
|
|
|
|
public String Text { get; set; }
|
|
public String Intent { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public String ContextHash { get; set; }
|
|
|
|
public List<RasaIntentExpressionPart> Entities { get; set; }
|
|
}
|
|
}
|