From 1a1c8e71fcd14858f595029f089b2d4a00202b32 Mon Sep 17 00:00:00 2001
From: ogi <Administrator@S-OGI-PC>
Date: Fri, 05 Dec 2025 09:24:16 +0900
Subject: [PATCH] プロジェクトファイルを追加。

---
 Protos/customTypes.proto |   21 +++++++++++++++++++++
 1 files changed, 21 insertions(+), 0 deletions(-)

diff --git a/Protos/customTypes.proto b/Protos/customTypes.proto
new file mode 100644
index 0000000..5c3f3cc
--- /dev/null
+++ b/Protos/customTypes.proto
@@ -0,0 +1,21 @@
+syntax = "proto3";
+
+option csharp_namespace = "customTypes";
+
+package customTypes;
+
+// Example: 12345.6789 -> { units = 12345, nanos = 678900000 }
+message DecimalValue {
+
+  // Whole units part of the amount
+  int64 units = 1;
+
+  // Nano units of the amount (10^-9)
+  // Must be same sign as units
+  sfixed32 nanos = 2;
+}
+
+// 日付型: yyyyMMdd
+message Date {
+  int32 Value = 1;
+}
\ No newline at end of file

--
Gitblit v1.10.0