BotSharp/BotSharp.Platform.Models/AIResponseMessageType.cs

14 lines
215 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
2018-10-03 01:44:11 +00:00
namespace BotSharp.Platform.Models
{
public enum AIResponseMessageType
{
Text = 0,
2018-07-12 15:07:05 +00:00
Card = 1,
Custom = 4
}
}