summaryrefslogtreecommitdiff
path: root/platform/winrt/gsview/ContentEntry.cs
diff options
context:
space:
mode:
Diffstat (limited to 'platform/winrt/gsview/ContentEntry.cs')
-rw-r--r--platform/winrt/gsview/ContentEntry.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/platform/winrt/gsview/ContentEntry.cs b/platform/winrt/gsview/ContentEntry.cs
deleted file mode 100644
index a384be16..00000000
--- a/platform/winrt/gsview/ContentEntry.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-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;
- }
- };
-}
-