blob: b2742add16b570cbfeb3943b90a69bbc5c4dc58d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Enum VideoType
/// </summary>
public enum VideoType
{
/// <summary>
/// The video file
/// </summary>
VideoFile,
/// <summary>
/// The iso
/// </summary>
Iso,
/// <summary>
/// The DVD
/// </summary>
Dvd,
/// <summary>
/// The blu ray
/// </summary>
BluRay,
/// <summary>
/// The hd DVD
/// </summary>
HdDvd
}
/// <summary>
/// Enum IsoType
/// </summary>
public enum IsoType
{
/// <summary>
/// The DVD
/// </summary>
Dvd,
/// <summary>
/// The blu ray
/// </summary>
BluRay
}
}
|