15 lines
399 B
C#
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; }
|
|
}
|
|
} |