18 lines
688 B
C#
18 lines
688 B
C#
namespace YTSearch.Models
|
|
{
|
|
public class VideoResult
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string Title { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public string ThumbnailUrl { get; set; } = string.Empty;
|
|
public string ChannelName { get; set; } = string.Empty;
|
|
public string ChannelId { get; set; } = string.Empty;
|
|
public long ViewCount { get; set; }
|
|
public long LikeCount { get; set; }
|
|
public long DislikeCount { get; set; }
|
|
public DateTime PublishedAt { get; set; }
|
|
public string VideoUrl { get; set; } = string.Empty;
|
|
}
|
|
}
|