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/IReport.cs | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/HotelPms.Share.Windows/Report/IReport.cs b/HotelPms.Share.Windows/Report/IReport.cs
new file mode 100644
index 0000000..7e83d73
--- /dev/null
+++ b/HotelPms.Share.Windows/Report/IReport.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Data;
+using System.Linq;
+using System.Text;
+
+namespace HotelPms.Share.Windows.Report
+{
+ public interface IReport
+ {
+ void Output();
+ void Dispose();
+
+ DataTable Data { get; set; }
+ GridStyle Style { get; set; }
+ }
+}
--
Gitblit v1.10.0