diff options
Diffstat (limited to 'Software/Visual_Studio_v2/Tango.BLL/Objects/Organization.cs')
| -rw-r--r-- | Software/Visual_Studio_v2/Tango.BLL/Objects/Organization.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Software/Visual_Studio_v2/Tango.BLL/Objects/Organization.cs b/Software/Visual_Studio_v2/Tango.BLL/Objects/Organization.cs new file mode 100644 index 000000000..3750fb909 --- /dev/null +++ b/Software/Visual_Studio_v2/Tango.BLL/Objects/Organization.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tango.BLL.Objects +{ + public class Organization : ObjectBase + { + public string ID { get; set; } + public string Name { get; set; } + } +} |
