aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio_v2/Tango.BLL/Objects/Organization.cs
blob: 3750fb90953fd0f117416d1367e2e10e8da115e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
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; }
    }
}