jellyfin/MediaBrowser.Model/Devices/ContentUploadHistory.cs

16 lines
345 B
C#
Raw Normal View History

2014-10-11 20:38:13 +00:00
using System.Collections.Generic;
namespace MediaBrowser.Model.Devices
{
public class ContentUploadHistory
{
public string DeviceId { get; set; }
2017-08-19 19:43:35 +00:00
public LocalFileInfo[] FilesUploaded { get; set; }
2014-10-11 20:38:13 +00:00
public ContentUploadHistory()
{
2017-08-19 19:43:35 +00:00
FilesUploaded = new LocalFileInfo[] { };
2014-10-11 20:38:13 +00:00
}
}
}