17 lines
552 B
C#
17 lines
552 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using silver_messages;
|
|
namespace silver_messages.youtube
|
|
{
|
|
public class yt_metadata
|
|
{
|
|
//not including (part _)
|
|
public string title { get; set; }
|
|
public DateTime? release { get; set; }
|
|
public DateTime? recording { get; set; }
|
|
//name of the YT playlist to add this to
|
|
public string playlist { get; set; }
|
|
//my path to the thumbnail - meaning it will need the number stamped some other way
|
|
public string thumbnail { get; set; }
|
|
}
|
|
} |