summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.UITest.TestCloud/DeviceSet.cs
blob: 3afa0959d2680d153f25cf6b591aa0b6651fa8bd (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
using System.Collections.Generic;

namespace Xamarin.Forms.UITest.TestCloud
{
	internal class DeviceSet
	{
		public DeviceSet(List<Platform> deviceSetPlatform, string id, List<string> devices)
		{
			Id = id;
			DeviceSetPlatform = deviceSetPlatform;
			Devices = devices;
		}

		public string Id { get; private set; }

		public List<Platform> DeviceSetPlatform { get; private set; }

		public List<string> Devices { get; private set; }

		internal enum Platform
		{
			None,
			Android,
			IOs,
			IOsClassic
		}
	}
}