Korero – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2  
3 namespace Korero.Teleport
4 {
5 public class LandmarkComboBoxItem
6 {
7 #region Public Enums, Properties and Fields
8  
9 public Guid Id { get; set; }
10  
11 public string Name { get; set; }
12  
13 #endregion
14  
15 #region Constructors, Destructors and Finalizers
16  
17 public LandmarkComboBoxItem(string name, Guid id)
18 {
19 Name = name;
20 Id = id;
21 }
22  
23 #endregion
24  
25 #region Public Overrides
26  
27 public override string ToString()
28 {
29 return Name;
30 }
31  
32 #endregion
33 }
34 }