-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeviceVersion.cs
More file actions
29 lines (26 loc) · 851 Bytes
/
Copy pathDeviceVersion.cs
File metadata and controls
29 lines (26 loc) · 851 Bytes
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
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
namespace AndroidDeviceConfig
{
/// <summary>
/// Holds a specific device version
/// </summary>
[Serializable]
public class DeviceVersion
{
/// <summary>
/// Holds the identfiers that could be used to identify that version
/// </summary>
[XmlArrayItem("Identifier")]
public List<DeviceIdentifier> Identifiers = new List<DeviceIdentifier>();
/// <summary>
/// Holds all recoveries compatible with this version
/// </summary>
public List<Recovery> Recoveries = new List<Recovery>();
/// <summary>
/// Holds all possible actions for that device
/// </summary>
public List<ActionSet> PossibleActions = new List<ActionSet>();
}
}