first commit
This commit is contained in:
28
Assets/Scripts/HttpArgs.cs
Normal file
28
Assets/Scripts/HttpArgs.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user