BotSharp/BotSharp.Platform.Articulate/ViewModels/EntityPageViewModel.cs

15 lines
313 B
C#
Raw Normal View History

2019-03-16 16:34:32 +00:00
using BotSharp.Platform.Articulate.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Articulate.ViewModels
{
public class EntityPageViewModel
{
public List<EntityModel> Entities { get; set; }
public int Total { get; set; }
}
}