mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 20:33:12 +01:00
13 lines
307 B
C#
13 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[] { };
|
|
}
|
|
}
|
|
}
|