Now immediatelly downloading new selected folders
[pithos-ms-client] / trunk / NetSparkle / NetSparkleAppCaseItem.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5
6 namespace AppLimit.NetSparkle
7 {
8     public class NetSparkleAppCastItem : IComparable<NetSparkleAppCastItem>
9     {
10         public String AppName;
11         public String AppVersionInstalled;
12
13         public String Version;
14         public String ReleaseNotesLink;
15         public String DownloadLink;
16
17         public String DSASignature;
18
19         public String Summary;
20
21         #region IComparable<NetSparkleAppCastItem> Members
22
23         public int CompareTo(NetSparkleAppCastItem other)
24         {
25             Version v1 = new Version(this.Version);
26             Version v2 = new Version(other.Version);
27
28             return v1.CompareTo(v2);            
29         }
30
31         #endregion
32     }    
33 }