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.Windows/Report/Cell.cs |   45 +++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 45 insertions(+), 0 deletions(-)

diff --git a/HotelPms.Share.Windows/Report/Cell.cs b/HotelPms.Share.Windows/Report/Cell.cs
new file mode 100644
index 0000000..c9b6cd0
--- /dev/null
+++ b/HotelPms.Share.Windows/Report/Cell.cs
@@ -0,0 +1,45 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Drawing;
+
+namespace HotelPms.Share.Windows.Report
+{
+    /// <summary>
+    ///  �󎚒P��:1/100�C���`	(�{���ł�������)
+    /// </summary>
+    public class Cell
+    {
+        public enum CellKind : int
+        { 
+            Text = 0,
+            DotLine,
+            Line,
+            Image,
+            PrintTime,
+            PageNo,
+            TimeAndPage,
+        }
+
+        /// <summary>
+        /// ����X�^�C��
+        /// null�̏ꍇ�A�e�N���X�̈ꊇ�ݒ�̃X�^�C�����g���z��
+        /// </summary>
+        public CellStyle Style { get; set; }
+
+        /// <summary>
+        /// �L�[
+        /// </summary>
+        public string Key { get; set; } = string.Empty;
+
+        /// <summary>
+        /// ������
+        /// </summary>
+        public CellKind CellType {  get; set; } = CellKind.Text;    
+
+        /// <summary>
+        /// �󎚏��
+        /// </summary>
+        public string Text { get; set; } = string.Empty;
+    }
+}

--
Gitblit v1.10.0