BotSharp/Platform.Dialogflow/Models/EntityModel.cs
2018-10-02 14:49:37 -05:00

20 lines
412 B
C#

using BotSharp.Platform.Abstraction;
using BotSharp.Platform.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace Platform.Dialogflow.Models
{
public class EntityModel : EntityBase
{
public string Agent { get; set; }
public string EntityName { get; set; }
public string Type { get; set; }
public string UiColor { get; set; }
}
}