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