DocSpace-buildtools/common/ASC.Core.Common/protos/EncryptionSettingsProto.proto

17 lines
324 B
Protocol Buffer
Raw Normal View History

2020-09-02 10:54:50 +00:00
syntax = "proto3";
2020-12-28 13:22:08 +00:00
package ASC.Core.Encryption;
2020-09-02 10:54:50 +00:00
message EncryptionSettingsProto {
string password = 1;
EncryprtionStatus Status = 2;
bool NotifyUsers = 3;
2020-09-08 08:26:05 +00:00
string ServerRootPath = 4;
2020-09-02 10:54:50 +00:00
}
enum EncryprtionStatus {
Decrypted = 0;
EncryptionStarted = 1;
Encrypted = 2;
DecryptionStarted = 3;
}