using Dpz.Core.Entity.Base;
namespace Dpz.Core.Public.Entity;
[BsonIgnoreExtraElements]
public class Video : IBaseEntity
{
public required string Id { get; set; }
public string? Title { get; set; }
public string? Name { get; set; }
public string? VideoTitle { get; set; }
public string? SubTitle { get; set; }
public string? Description { get; set; }
public string[] Tags { get; set; } = [];
public int PlayCount { get; set; }
public int DanmakuCount { get; set; }
public int CommentCount { get; set; }
}
评论加载中...