You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
438 B
C#
23 lines
438 B
C#
2 months ago
|
using System;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Represents the available formats for displaying advertisements.
|
||
|
/// </summary>
|
||
|
public enum AdFormat
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Represents a rewarded video ad format.
|
||
|
/// </summary>
|
||
|
RewardedVideo,
|
||
|
|
||
|
/// <summary>
|
||
|
/// Represents an interstitial ad format.
|
||
|
/// </summary>
|
||
|
Interstitial,
|
||
|
|
||
|
/// <summary>
|
||
|
/// Represents a banner ad format.
|
||
|
/// </summary>
|
||
|
Banner
|
||
|
}
|