first commit

This commit is contained in:
2026-02-09 20:10:14 +08:00
commit 47a5cff08b
2638 changed files with 322636 additions and 0 deletions

View 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; }
}
}