blob: 31451e3332e70112308dabbabc8d55d00c9ae7ba (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 | using System;
namespace GoogleMobileAds.Api
{
	public class AdapterStatus
	{
		public AdapterState InitializationState { get; private set; }
		public string Description { get; private set; }
		public int Latency { get; private set; }
		internal AdapterStatus(AdapterState state, string description, int latency)
		{
			this.InitializationState = state;
			this.Description = description;
			this.Latency = latency;
		}
	}
}
 |