jellyfin/MediaBrowser.Model/Sync/DeviceFileInfo.cs

10 lines
170 B
C#
Raw Normal View History

2014-12-27 06:24:46 +00:00

namespace MediaBrowser.Model.Sync
{
public class DeviceFileInfo
{
2014-12-27 22:52:41 +00:00
public string[] Path { get; set; }
2014-12-27 06:24:46 +00:00
public string Name { get; set; }
}
}