aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.UsersAndRoles/Views/OrganizationSelectionView.xaml.cs
blob: 16c8b2b24a2c146904ffebceaf140767a73dcaad (plain)
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace Tango.MachineStudio.UsersAndRoles.Views
{
    /// <summary>
    /// Interaction logic for OrganizationSelectionView.xaml
    /// </summary>
    public partial class OrganizationSelectionView : UserControl
    {
        public OrganizationSelectionView()
        {
            InitializeComponent();
        }
    }
}
lass="n">City = value; } } [XmlElement("town")] [JsonProperty("town")] public String Town { get { return City; } set { City = value; } } [XmlElement("city")] [JsonProperty("city")] public String City { get; set; } [XmlElement("state")] [JsonProperty("state")] public String State { get; set; } [XmlElement("postcode")] [JsonProperty("postcode")] public String PostalCode { get; set; } [XmlElement("country")] [JsonProperty("country")] public String Country { get; set; } [XmlElement("country_code")] [JsonProperty("country_code")] public String CountryCode { get; set; } } }