dino/libdino/src/entity/encryption.vala

16 lines
232 B
Vala
Raw Normal View History

namespace Dino.Entities {
2022-02-14 13:55:59 +00:00
public enum Encryption {
NONE,
PGP,
2021-04-08 10:07:04 +00:00
OMEMO,
DTLS_SRTP,
SRTP,
2022-02-14 13:55:59 +00:00
UNKNOWN;
public bool is_some() {
return this != NONE;
}
}
}