MVCPostall/Postall.Domain/Dtos/VideoItemResponse.cs
2025-03-04 19:06:01 -03:00

24 lines
710 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Postall.Infra.Dtos
{
public class VideoItemResponse
{
public string Id { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string ThumbnailUrl { get; set; }
public DateTime PublishedAt { get; set; }
public bool IsSelected { get; set; }
// Propriedades adicionais que podem ser úteis no futuro
public string ChannelTitle { get; set; }
public string ChannelId { get; set; }
public string VideoUrl => $"https://www.youtube.com/watch?v={Id}";
}
}