13 lines
188 B
C#
13 lines
188 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace Bot.Rasa.Models
|
|||
|
|
{
|
|||
|
|
public enum AIResponseMessageType
|
|||
|
|
{
|
|||
|
|
Text = 0,
|
|||
|
|
Custom = 4
|
|||
|
|
}
|
|||
|
|
}
|