18 lines
349 B
C#
18 lines
349 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BotSharp.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; }
|
|
}
|
|
}
|