client/src/Iri.Modernisation.Data/Models/PolemicTypeDescription.cs
changeset 38 bd33267300aa
parent 28 2d4ec5ab2a40
--- a/client/src/Iri.Modernisation.Data/Models/PolemicTypeDescription.cs	Wed Jan 27 10:55:59 2010 +0100
+++ b/client/src/Iri.Modernisation.Data/Models/PolemicTypeDescription.cs	Thu Feb 04 16:38:04 2010 +0100
@@ -15,10 +15,10 @@
     {
         public String Title { get; set; }
         public Color Color {get;set;}
-
-        public PolemicTypeDescription(String title, String color)
+        public int Id { get; set; }
+        public PolemicTypeDescription(int id,String title, String color)
         {
-
+            Id = id;
             Title = title;
             Color = Color.FromArgb(
                 byte.Parse(color.Substring(1,2),NumberStyles.AllowHexSpecifier),