12 lines
173 B
C#
12 lines
173 B
C#
|
using System;
|
||
|
|
||
|
namespace BigoAds.Scripts.Api.Constant
|
||
|
{
|
||
|
[Serializable]
|
||
|
public enum BigoPosition
|
||
|
{
|
||
|
Top = 0,
|
||
|
Middle = 1,
|
||
|
Bottom = 2
|
||
|
}
|
||
|
}
|