main
1using System;
2using gorilla.commons.utility;
3
4namespace momoney.service.infrastructure.updating
5{
6 public interface IWhatIsTheAvailableVersion : Query<ApplicationVersion> {}
7
8 public class ApplicationVersion
9 {
10 public Uri activation_url { get; set; }
11 public Version current { get; set; }
12 public string data_directory { get; set; }
13 public bool updates_available { get; set; }
14 public DateTime last_checked_for_updates { get; set; }
15 public string application_name { get; set; }
16 public Uri deployment_url { get; set; }
17 public Version available_version { get; set; }
18 public long size_of_update_in_bytes { get; set; }
19 }
20}