mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 22:36:12 +01:00
15 lines
345 B
C#
15 lines
345 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Model.Devices
|
|
{
|
|
public class ContentUploadHistory
|
|
{
|
|
public string DeviceId { get; set; }
|
|
public LocalFileInfo[] FilesUploaded { get; set; }
|
|
|
|
public ContentUploadHistory()
|
|
{
|
|
FilesUploaded = new LocalFileInfo[] { };
|
|
}
|
|
}
|
|
}
|