16 lines
212 B
Dart
16 lines
212 B
Dart
// Author: fengshengxiong
|
|
// Date: 2024/6/13
|
|
// Description: 广告格式
|
|
|
|
enum AdFormat {
|
|
/// 插页
|
|
insert('Insert'),
|
|
|
|
/// 原生
|
|
native('Native');
|
|
|
|
const AdFormat(this.type);
|
|
|
|
final String type;
|
|
}
|