franz/franz/silver_messages/youtube/metadata_needed.cs

15 lines
409 B
C#

using System;
using System.Collections.Generic;
using silver_messages;
namespace silver_messages.youtube
{
/*
* for all the scheduled, not-yet released videos, what required metadata
* do they need
*/
public class metadata_needed : message
{
//key is a yt id
public Dictionary<string, yt_metadata> needed{get;set;} = new Dictionary<string, yt_metadata>();
}
}