12 lines
336 B
Protocol Buffer
12 lines
336 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package common.archivable.v1;
|
|
|
|
option go_package = "github.com/tech/sendico/pkg/proto/common/archivable/v1;archivablev1";
|
|
|
|
// Archivable is an embeddable fragment that marks a record as soft-deleted.
|
|
message Archivable {
|
|
// is_archived is true when the record has been logically removed.
|
|
bool is_archived = 1;
|
|
}
|