mirror of
https://github.com/jcreek/YouTubeChannelDownloader.git
synced 2026-07-13 03:03:46 +00:00
19 lines
424 B
C#
19 lines
424 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YouTubeChannelDownloader.Models
|
|
{
|
|
public class DownloadedVideo
|
|
{
|
|
[Key]
|
|
public string DownloadedVideoId { get; set; }
|
|
|
|
public DateTime DownloadedDateTime { get; set; }
|
|
public string Title { get; set; }
|
|
}
|
|
}
|