17 lines
445 B
C#
17 lines
445 B
C#
using System;
|
|
|
|
namespace FoxTube.Classes
|
|
{
|
|
public class DownloadItemContainer
|
|
{
|
|
public string Title { get; set; }
|
|
public string Channel { get; set; }
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Extension { get; set; }
|
|
public Uri Thumbnail { get; set; }
|
|
public string Quality { get; set; }
|
|
public TimeSpan Duration { get; set; }
|
|
}
|
|
}
|