2018-09-28 22:25:55 +00:00
|
|
|
|
using Platform.Articulate.Models;
|
2018-09-28 00:49:43 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2018-09-28 22:25:55 +00:00
|
|
|
|
namespace Platform.Articulate.ViewModels
|
2018-09-28 00:49:43 +00:00
|
|
|
|
{
|
|
|
|
|
|
public class IntentPageViewModel
|
|
|
|
|
|
{
|
2018-09-30 21:52:33 +00:00
|
|
|
|
public List<IntentViewModel> Intents { get; set; }
|
2018-09-28 00:49:43 +00:00
|
|
|
|
|
|
|
|
|
|
public int Total { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|