From 5fbd297af59a642875e8f2d392515dd61571de03 Mon Sep 17 00:00:00 2001 From: stubbfel Date: Tue, 16 Jul 2013 13:26:09 +0200 Subject: [PATCH] delete FileList --- CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj | 1 - CampusAppWP8/CampusAppWP8/utility/FileList.cs | 38 ------------------- 2 files changed, 39 deletions(-) delete mode 100644 CampusAppWP8/CampusAppWP8/utility/FileList.cs diff --git a/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj b/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj index 6f3bad02..17de6057 100644 --- a/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj +++ b/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj @@ -213,7 +213,6 @@ - diff --git a/CampusAppWP8/CampusAppWP8/utility/FileList.cs b/CampusAppWP8/CampusAppWP8/utility/FileList.cs deleted file mode 100644 index a080bd08..00000000 --- a/CampusAppWP8/CampusAppWP8/utility/FileList.cs +++ /dev/null @@ -1,38 +0,0 @@ -//----------------------------------------------------------------------- -// -// Company copyright tag. -// -// stubbfel, fiedlchr -// 03.05.2013 -//---------------------------------------------------------------------- -namespace CampusAppWP8.Utility -{ - /// - /// Class contain some default names of files. - /// - /// - /// This Class may be become to a resource file. - /// - public static class FileList - { - /// - /// Name of the file for the feed of the mensa. - /// - public static readonly string MensaXmlFile = "MensaFeed.xml"; - - /// - /// Opening hours feed file name. - /// - public static readonly string OpeninghoursXmlFile = "OpeninghoursFeed.xml"; - - /// - /// Department feed file name. - /// - public static readonly string DepartmentXmlFile = "DepartmentFeed.xml"; - - /// - /// Department favorite feed file name. - /// - public static readonly string DepartmentFavoriteXmlFile = "DepartmentFavoriteFeed.xml"; - } -}