blob: e360fbdb1d89bc33cb3c05abf544a9f7317b5e7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
using System.Collections.Generic;
using System.Text;
namespace Tango.BLL.Objects
{
public class Contact : ObjectBase
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public string PhoneNumber { get; set; }
public string Fax { get; set; }
}
}
|