BotSharp/Platform.Articulate/ViewModels/IntentPageViewModel.cs
2018-09-30 16:52:33 -05:00

15 lines
298 B
C#

using Platform.Articulate.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace Platform.Articulate.ViewModels
{
public class IntentPageViewModel
{
public List<IntentViewModel> Intents { get; set; }
public int Total { get; set; }
}
}