From e451f7ff89ec508d1fa840bd774acdc7bfcc3f39 Mon Sep 17 00:00:00 2001 From: stubbfel Date: Mon, 17 Jun 2013 12:14:02 +0200 Subject: [PATCH] add CreateGetUrl #33 --- .../CampusAppWP8/Model/Utility/URLParamModel.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CampusAppWP8/CampusAppWP8/Model/Utility/URLParamModel.cs b/CampusAppWP8/CampusAppWP8/Model/Utility/URLParamModel.cs index 7ea84ed4..c8d9c1a2 100644 --- a/CampusAppWP8/CampusAppWP8/Model/Utility/URLParamModel.cs +++ b/CampusAppWP8/CampusAppWP8/Model/Utility/URLParamModel.cs @@ -10,7 +10,7 @@ namespace CampusAppWP8.Model.Utility /// /// This class is a Model for the URLParameter like GET-Parameter /// - public class URLParamModel + public class UrlParamModel { #region Members @@ -24,20 +24,20 @@ namespace CampusAppWP8.Model.Utility #region Constructor /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// the key for the parameter - public URLParamModel(string key) + public UrlParamModel(string key) { this.key = key; } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// the key for the parameter> /// value of the parameter - public URLParamModel(string key, string value) + public UrlParamModel(string key, string value) { this.key = key; this.Value = value;