Subversion Repository Public Repository

Nextrek

Diff Revisions 44 vs 48 for /WindowsPhone/NotizieTL/NotizieTL/Articolo.cs

Diff revisions: vs.
  @@ -20,6 +20,7 @@
20 20 String data;
21 21 String icona;
22 22 String nota;
23 + String colore;
23 24
24 25 public String Titolo { get { return titolo; } set {titolo = value;} }
25 26 public String Link { get { return link; } set { link = value; } }
  @@ -28,10 +29,11 @@
28 29 public String DataPub { get { return data; } set { data = value; } }
29 30 public String Icona { get { return icona; } set { icona = value; } }
30 31 public String Nota { get { return nota; } set { nota = value; } }
32 + public String Colore { get { return colore; } set { colore = value; } }
31 33
32 34 public Articolo() { }
33 35
34 - public Articolo(String titolo, String link, String testo, String testoFull, String dataPub, String nota, String icona)
36 + public Articolo(String titolo, String link, String testo, String testoFull, String dataPub, String nota, String icona, String colore)
35 37 {
36 38 this.Titolo = titolo;
37 39 this.Link = link;
  @@ -40,6 +42,7 @@
40 42 this.DataPub = dataPub;
41 43 this.Nota = nota;
42 44 this.Icona = icona;
45 + this.Colore = colore;
43 46 }
44 47
45 48 //public Articolo(String titolo, String link, String testo, String dataPub, String icona)