/*
Proto contract ...

Version     Date            Author      Comment
V1.0.0      07-03-2025      SGi         Initial versioning
*/

syntax = "proto3";

import "google/protobuf/timestamp.proto";
import "Interfaces/PrintManager/Protos/V1/bergstein.digi.printmanager.proto_options.proto";

package shared;

option csharp_namespace = "Bergstein.Digi.Shared.Interfaces.PrintManager.Audit.Protos.V1";

// The audit reply containing meta data about the associated entity.
message Audit {
  // The username who created the entity. Max length is 50 characters.
  string CreatedByUserName = 1;
  // The timestamp when the entity was created.
  google.protobuf.Timestamp CreatedDateTimeUtc = 2;
  // The username who last updated the entity. Max length is 50 characters.
  string UpdatedByUserName = 3;
  // The timestamp when the entity was last updated.
  google.protobuf.Timestamp UpdatedDateTimeUtc = 4;
}
