65 lines
1.1 KiB
C#
65 lines
1.1 KiB
C#
using System;
|
|
|
|
namespace Tech3C
|
|
{
|
|
/// <summary>
|
|
/// Language options for the SDK
|
|
/// </summary>
|
|
public enum Language
|
|
{
|
|
Vietnamese,
|
|
English
|
|
}
|
|
|
|
/// <summary>
|
|
/// UI mode for authentication dialog
|
|
/// </summary>
|
|
public enum UiMode
|
|
{
|
|
Fullscreen,
|
|
Dialog
|
|
}
|
|
|
|
/// <summary>
|
|
/// Screen orientation for authentication
|
|
/// </summary>
|
|
public enum OrientationMode
|
|
{
|
|
Auto,
|
|
Portrait,
|
|
Landscape
|
|
}
|
|
|
|
/// <summary>
|
|
/// Login type for authentication
|
|
/// Matches the native SDK's LoginType enum
|
|
/// </summary>
|
|
public enum LoginType
|
|
{
|
|
GUEST,
|
|
ACCOUNT,
|
|
SOCIAL,
|
|
REGISTER // For register success handling
|
|
}
|
|
|
|
/// <summary>
|
|
/// Environment for the SDK
|
|
/// </summary>
|
|
public enum Environment
|
|
{
|
|
Production,
|
|
Staging,
|
|
Development
|
|
}
|
|
|
|
/// <summary>
|
|
/// Dialog size for UI mode
|
|
/// </summary>
|
|
public enum DialogSize
|
|
{
|
|
Small,
|
|
Medium,
|
|
Large
|
|
}
|
|
}
|