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

14 lines
215 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Models
{
public enum AIResponseMessageType
{
Text = 0,
Card = 1,
Custom = 4
}
}