franz/franz/silver_messages/youtube/upload.cs

14 lines
382 B
C#

using System;
using System.Collections.Generic;
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; }
}
}