9 lines
213 B
C#
9 lines
213 B
C#
|
|
namespace AmazonAds {
|
|||
|
|
public interface IAdSize {
|
|||
|
|
int GetWidth ();
|
|||
|
|
int GetHeight ();
|
|||
|
|
string GetSlotUUID ();
|
|||
|
|
}
|
|||
|
|
public interface IInterstitialAdSize { }
|
|||
|
|
public interface IVideo { }
|
|||
|
|
}
|