mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
14 lines
307 B
C#
14 lines
307 B
C#
namespace MediaBrowser.Model.Devices
|
|
{
|
|
public class ContentUploadHistory
|
|
{
|
|
public string DeviceId { get; set; }
|
|
public LocalFileInfo[] FilesUploaded { get; set; }
|
|
|
|
public ContentUploadHistory()
|
|
{
|
|
FilesUploaded = new LocalFileInfo[] { };
|
|
}
|
|
}
|
|
}
|