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

18 lines
340 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Platform.Dialogflow.ViewModels
{
public class DialogflowAllEntityViewModel
{
public int Count { get; set; }
public string Id { get; set; }
public string Name { get; set; }
public string Preview { get; set; }
}
}