mirror of
https://github.com/jcreek/YouTubeChannelDownloader.git
synced 2026-07-13 11:13:46 +00:00
feat(*): Add DownloadedVideo model
This commit is contained in:
@@ -0,0 +1,18 @@
|
|||||||
|
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; }
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user