jellyfin/MediaBrowser.Model/Sync/DeviceFileInfo.cs

10 lines
168 B
C#
Raw Normal View History

2014-12-27 07:24:46 +01:00

namespace MediaBrowser.Model.Sync
{
public class DeviceFileInfo
{
2014-12-29 06:56:55 +01:00
public string Path { get; set; }
2014-12-27 07:24:46 +01:00
public string Name { get; set; }
}
}