aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Devices/LocalFileInfo.cs
blob: f7704e0877e8f246f362edd5b07044d4eb6422b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace MediaBrowser.Model.Devices
{
    public class LocalFileInfo
    {
        public string Name { get; set; }
        public string FullPath { get; set; }
        public string Album { get; set; }
        public string MimeType { get; set; }
    }
}