Files
jellyfin-jellyfin-1/MediaBrowser.Model/Sync/DeviceFileInfo.cs

10 lines
168 B
C#
Raw Normal View History

2014-12-27 01:24:46 -05:00

namespace MediaBrowser.Model.Sync
{
public class DeviceFileInfo
{
public string Path { get; set; }
public string Name { get; set; }
}
}