15 lines
317 B
C#
15 lines
317 B
C#
|
|
using Hncore.Infrastructure.WebApi;
|
|||
|
|
using Hncore.Pass.Vpn.Domain;
|
|||
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Home.Models
|
|||
|
|
{
|
|||
|
|
public class ArticleInfoMode
|
|||
|
|
{
|
|||
|
|
public ArticleEntity Prev { get; set; }
|
|||
|
|
public ArticleEntity Info { get; set; }
|
|||
|
|
public ArticleEntity Next { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|