20 lines
462 B
C#
20 lines
462 B
C#
|
|
using BotSharp.Core.Expressions;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace BotSharp.Core.Models
|
|||
|
|
{
|
|||
|
|
public class RasaIntentExpression
|
|||
|
|
{
|
|||
|
|
public RasaIntentExpression()
|
|||
|
|
{
|
|||
|
|
Entities = new List<RasaIntentExpressionPart>();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public String Text { get; set; }
|
|||
|
|
public String Intent { get; set; }
|
|||
|
|
public List<RasaIntentExpressionPart> Entities { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|