summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.iOS.UITests/Device.cs
blob: 32b2cf8839ec3ae636816d437bc0c434c6a7d4a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace Xamarin.Forms.UITests
{

	public enum DeviceType 
	{
		Phone,
		Tablet
	}

	public class Device 
	{
		public DeviceType Type { get; set; }
		public string IP { get; set; }

		public Device (DeviceType type, string ip)
		{
			Type = type;
			IP = ip;
		}
	}	
}