Files
2025-11-19 11:10:02 +08:00

23 lines
576 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace Jellyfin.Plugin.Danmu.Scrapers.Dandan.Entity
{
public class Comment
{
[JsonPropertyName("cid")]
public long Cid { get; set; }
// p参数格式为出现时间,模式,颜色,用户ID各个参数之间使用英文逗号分隔
[JsonPropertyName("p")]
public string P { get; set; }
[JsonPropertyName("m")]
public string Text { get; set; }
}
}