32 lines
839 B
C#
32 lines
839 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NBF
|
|
{
|
|
[Serializable]
|
|
public class PageListData<T>
|
|
{
|
|
public int TotalCount { get; set; }
|
|
public int Page { get; set; }
|
|
public int PageSize { get; set; }
|
|
public List<T> List { get; set; }
|
|
}
|
|
|
|
[Serializable]
|
|
public class VideoRetData
|
|
{
|
|
public int Id { get; set; }
|
|
public string FilePath { get; set; }
|
|
public string Title { get; set; }
|
|
public string Desc { get; set; }
|
|
public int Like { get; set; }
|
|
public int Message { get; set; }
|
|
public int Share { get; set; }
|
|
public int Collect { get; set; }
|
|
public string AuthorName { get; set; }
|
|
/// <summary>
|
|
/// 所处的页
|
|
/// </summary>
|
|
public int Page { get; set; }
|
|
}
|
|
} |