DocSpace-client/common/ASC.Data.Storage/protos/EncryptionSettingsProto.proto

17 lines
332 B
Protocol Buffer
Raw Normal View History

2020-09-02 10:54:50 +00:00
syntax = "proto3";
package ASC.Data.Storage.Encryption;
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;
}