feat(*): Add DownloadedVideo model

This commit is contained in:
Josh Creek
2021-08-29 15:40:52 +01:00
parent 2e2d6771c0
commit 4c725873da
@@ -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; }
}
}