aboutsummaryrefslogtreecommitdiffstats
path: root/proto/pseudonyms/entity.proto
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2025-08-10 12:09:22 +0200
committerrtkay123 <dev@kanjala.com>2025-08-10 12:09:27 +0200
commitaf407fe5c3e1d5b8b315db029805fa7290c83fae (patch)
treec6cde42d7e05453b0be99fa5c3f181fc843ab76a /proto/pseudonyms/entity.proto
parentd50185df5a5870498b6c7e6b51e0368d051743ca (diff)
downloadwarden-af407fe5c3e1d5b8b315db029805fa7290c83fae.tar.bz2
warden-af407fe5c3e1d5b8b315db029805fa7290c83fae.zip
feat(pseudonyms): proto definitions
Diffstat (limited to 'proto/pseudonyms/entity.proto')
-rw-r--r--proto/pseudonyms/entity.proto10
1 files changed, 10 insertions, 0 deletions
diff --git a/proto/pseudonyms/entity.proto b/proto/pseudonyms/entity.proto
new file mode 100644
index 0000000..d656193
--- /dev/null
+++ b/proto/pseudonyms/entity.proto
@@ -0,0 +1,10 @@
+syntax = "proto3";
+
+package pseudonyms.entity;
+
+import "google/protobuf/timestamp.proto";
+
+message Entity {
+ string id = 1;
+ google.protobuf.Timestamp cre_dt_tm = 2;
+}