15 lines
297 B
C#
15 lines
297 B
C#
|
|
using BotSharp.Core.Engines.Articulate;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace BotSharp.RestApi.Articulate
|
|||
|
|
{
|
|||
|
|
public class DomainPageViewModel
|
|||
|
|
{
|
|||
|
|
public List<DomainModel> Domains { get; set; }
|
|||
|
|
|
|||
|
|
public int Total { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|