Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.Devices.Geolocation;
using Windows.Foundation;
using Windows.UI.Xaml.Controls.Maps;

namespace SmartCharging.DataModel
{

    
    class Site
    {
        public string Id { get; set; }
        public string OwnerId { get; set; }
        public string OwnerName { get; set; }
        public SiteType Type { get; set; }
        public Geopoint Position { get; set; }
        public int Chargers { get; set; }
        public double Rating { get; set; }
        public string Name { get; set; }
        public string Description { get; set; }
        public string Address { get; set; }
        public string IconImageUrl { get; set; }
        public List<string> SiteImageUrls { get; set; }
        public Point NormalizedPoint { get; set; }
        public string PhoneNumber{get;set;}
        public string Email{get;set;}
        public string WebSite{get;set;}
        public ObservableCollection<Review> ReviewList { get; set; }



    }

    class SiteType
    {
        public string Id { get; set; }
        public string Label { get; set; }

        
    }
}

Commits for Nextrek/Android/SmartCharging/SmartCharging_WP/SmartCharging/DataModel/Site.cs

Diff revisions: vs.
Revision Author Commited Message
660 Diff Diff JMBauan picture JMBauan Thu 03 Sep, 2015 08:14:10 +0000
527 JMBauan picture JMBauan Mon 24 Aug, 2015 08:47:39 +0000