franz/franz/silver_messages/youtube/upload.cs
Adam R. Grey 0f1868d85e [wip] ought to work
but testing frameworks are counter productive
2021-06-29 07:39:11 -04:00

15 lines
399 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using silver_messages;
namespace silver_messages.youtube
{
/** if you receive this, start the upload (of filename with metadata)
* and then respond with an upload_started
*/
public class upload : message_yt
{
public string filename { get; set; }
public yt_metadata metadata { get; set; }
}
}