blob: 3b986c826fbdbc8f8944d02fe61cf4e8ffadbc32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using System.Collections.Generic;
using System.Text;
namespace Tango.DAL.Models
{
public class ContactModel
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string FullName { get; set; }
public string Email { get; set; }
public string PhoneNumber { get; set; }
public string Fax { get; set; }
}
}
|