MVCPostall/Postall/Models/VideoViewModel.cs
2025-03-08 19:13:24 -03:00

20 lines
674 B
C#

using System;
namespace Postall.Models
{
public class VideoViewModel
{
public string Id { get; set; }
public string VideoId { get; set; }
public string ChannelId { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string ThumbnailUrl { get; set; }
public DateTime PublishedAt { get; set; }
public string VideoUrl => $"https://www.youtube.com/watch?v={VideoId}";
public ulong ViewCount { get; set; }
public ulong LikeCount { get; set; }
public ulong DislikeCount { get; set; }
public ulong CommentCount { get; set; }
}
}