9 lines
160 B
C#
9 lines
160 B
C#
|
|
namespace AmazonAds{
|
||
|
|
public interface ISlotGroup
|
||
|
|
{
|
||
|
|
void AddSlot(int width, int height, string uid);
|
||
|
|
void AddSlot(AdSize size);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|