mirror of
https://github.com/MAKS-IT-COM/maksit-webui.git
synced 2026-08-15 09:58:09 +02:00
10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
/**
|
|
* Mailbox email protocol flags for multi-step OAuth UI.
|
|
* FiPlan/legacy FE shape — not in MaksIT.IdentityHub.Contracts.
|
|
*/
|
|
export enum EmailProtocol {
|
|
Smtp = 0,
|
|
Pop3 = 1,
|
|
Imap = 2,
|
|
}
|