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.Share/IO/LogInfo.cs | 31 +++++++++++++++++++++++++++++++
1 files changed, 31 insertions(+), 0 deletions(-)
diff --git a/HotelPms.Share/IO/LogInfo.cs b/HotelPms.Share/IO/LogInfo.cs
new file mode 100644
index 0000000..b58e3cf
--- /dev/null
+++ b/HotelPms.Share/IO/LogInfo.cs
@@ -0,0 +1,31 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace HotelPms.Share.IO
+{
+ public class LogInfo
+ {
+ private string m_Message = string.Empty;
+
+ public string Message
+ {
+ get { return m_Message; }
+ set { m_Message = value; }
+ }
+
+ private OperationLog.LogLevelType m_Level = OperationLog.LogLevelType.Normal;
+
+ public OperationLog.LogLevelType Level
+ {
+ get { return m_Level; }
+ set { m_Level = value; }
+ }
+
+ public LogInfo(string msg, OperationLog.LogLevelType level)
+ {
+ m_Message = msg;
+ m_Level = level;
+ }
+ }
+}
--
Gitblit v1.10.0