blob: 7f60ad3a83ab5b32a937870644a645f49d2132b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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; }
public Address Address { get; set; }
public Contact Contact { get; set; }
public Organization()
{
Address = new Address();
Contact = new Contact();
}
}
}
|