generated from ricardo/MVCLogin
22 lines
603 B
C#
22 lines
603 B
C#
using System;
|
|
|
|
namespace Postall.Models
|
|
{
|
|
|
|
public class VideoViewModel
|
|
{
|
|
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}";
|
|
}
|
|
}
|
|
|