23 lines
438 B
C#
23 lines
438 B
C#
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
|
|
}
|