Subversion Repository Public Repository

Nextrek

Diff Revisions 36 vs 38 for /WindowsPhone/NotizieTL/NotizieTL/Articolo.cs

Diff revisions: vs.
  @@ -19,22 +19,23 @@
19 19 public String TestoFull { get; set; }
20 20 public String DataPub { get; set; }
21 21 public String Icona { get; set; }
22 + public String Nota { get; set; }
22 23
23 - public Articolo(String titolo, String link, String testo, String testoFull, String dataPub)
24 + public Articolo(String titolo, String link, String testo, String testoFull, String dataPub, String nota)
24 25 {
25 26 this.Titolo = titolo;
26 27 this.Link = link;
27 28 this.Testo = testo;
28 29 this.TestoFull = testoFull;
29 30 this.DataPub = dataPub;
31 + this.Nota = nota;
30 32 }
31 33
32 - public Articolo(String titolo, String link, String testo, String testoFull, String dataPub, String icona)
34 + public Articolo(String titolo, String link, String testo, String dataPub, String icona)
33 35 {
34 36 this.Titolo = titolo;
35 37 this.Link = link;
36 38 this.Testo = testo;
37 - this.TestoFull = testoFull;
38 39 this.DataPub = dataPub;
39 40 this.Icona = icona;
40 41