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] プロジェクトファイルを追加。

---
 HotelPms.VerUp/Util/ConfigData.cs |   42 ++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 42 insertions(+), 0 deletions(-)

diff --git a/HotelPms.VerUp/Util/ConfigData.cs b/HotelPms.VerUp/Util/ConfigData.cs
new file mode 100644
index 0000000..df1c37e
--- /dev/null
+++ b/HotelPms.VerUp/Util/ConfigData.cs
@@ -0,0 +1,42 @@
+using System.ComponentModel;
+
+namespace HotelPms.VerUp.Util
+{
+    internal class ConfigData
+    {
+        /// <summary>
+        /// 種類
+        /// </summary>
+        public enum DataType : int
+        {
+            [Description("Sql更新、Create Table,Create Indexなど")]
+            ExeFile = 0,
+            [Description("SQL文直接発行")]
+            ExeCommand,
+            [Description("Create View文(旧Viewを自動削除)")]
+            View,
+            [Description("CreateProcedure文(旧Procedureを自動削除)")]
+            Procedure,
+            [Description("Create Fuction文(旧Fuctionを自動削除)")]
+            Fuction,
+            [Description("SqlコマンドよりSql文を生成し、実行する")]
+            ExeReaderResult,
+        }
+
+        /// <summary>
+        /// 名称
+        /// </summary>
+        public string Name { get; set; }
+
+        /// <summary>
+        /// 種類
+        /// 0.ExeFile(Sql更新、Create Table,Create Indexなど) 
+        /// 1.ExeCommand(SQL文直接発行) 
+        /// 2.View(Create View文(旧Viewを自動削除)) 
+        /// 3.Procedure(Create Procedure文(旧Proctrueを自動削除)) 
+        /// 4.Fuction(Create Fuction文(旧Fuctionを自動削除))
+        /// 5.ExeReaderResult(SqlコマンドよりSql文を生成し、実行する)
+        /// </summary>
+        public int Type { get; set; }
+    }
+}

--
Gitblit v1.10.0