mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
8 lines
118 B
TypeScript
8 lines
118 B
TypeScript
enum SmsStatus {
|
|
Success = "Success",
|
|
Error = "Error",
|
|
LowBalance = "Low Balance",
|
|
}
|
|
|
|
export default SmsStatus;
|