mirror of
https://github.com/jellyfin/jellyfin-plugin-kodisyncqueue.git
synced 2024-11-23 13:39:44 +00:00
23 lines
460 B
C#
23 lines
460 B
C#
namespace Jellyfin.Plugin.KodiSyncQueue.Entities
|
|
{
|
|
public class FolderRec
|
|
{
|
|
// Status 0 = Added
|
|
// Status 1 = Removed
|
|
|
|
public int Id { get; set; }
|
|
|
|
public string ItemId { get; set; }
|
|
|
|
public string UserId { get; set; }
|
|
|
|
public long LastModified { get; set; }
|
|
|
|
public int Status { get; set; }
|
|
|
|
public string MediaType { get; set; }
|
|
|
|
public string LibraryName { get; set; }
|
|
}
|
|
}
|