more work on channel downloading

This commit is contained in:
Luke Pulverenti
2014-06-02 22:01:30 -04:00
parent 858c37b860
commit c91ea99016
14 changed files with 385 additions and 280 deletions

View File

@@ -12,6 +12,8 @@ namespace MediaBrowser.Model.Dto
public string Path { get; set; }
public MediaSourceType Type { get; set; }
public string Container { get; set; }
public long? Size { get; set; }
@@ -101,4 +103,11 @@ namespace MediaBrowser.Model.Dto
}
}
}
public enum MediaSourceType
{
Default = 0,
Grouping = 1,
Cache = 2
}
}