summaryrefslogtreecommitdiff
path: root/platform/windows/gsview/ContentEntry.cs
diff options
context:
space:
mode:
Diffstat (limited to 'platform/windows/gsview/ContentEntry.cs')
-rw-r--r--platform/windows/gsview/ContentEntry.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/platform/windows/gsview/ContentEntry.cs b/platform/windows/gsview/ContentEntry.cs
new file mode 100644
index 00000000..a384be16
--- /dev/null
+++ b/platform/windows/gsview/ContentEntry.cs
@@ -0,0 +1,29 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace gsview
+{
+ public class ContentEntry
+ {
+ public String Name
+ {
+ get;
+ set;
+ }
+
+ public int PageNum
+ {
+ get;
+ set;
+ }
+
+ public ContentEntry(String Name, int PageNum)
+ {
+ this.Name = Name;
+ this.PageNum = PageNum;
+ }
+ };
+}
+