customer/proto/discount/audit.model.proto
2023-05-30 16:38:56 +03:00

18 lines
384 B
Protocol Buffer

syntax = "proto3";
package discount;
import "google/api/annotations.proto";
import "google/protobuf/timestamp.proto";
import "google/protobuf/empty.proto";
option go_package = "./discount";
message Audit {
google.protobuf.Timestamp UpdatedAt = 1;
google.protobuf.Timestamp CreatedAt = 2;
optional google.protobuf.Timestamp DeletedAt = 3;
bool Deleted = 4;
}