-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBCMContactsView.cs
More file actions
38 lines (36 loc) · 1.57 KB
/
BCMContactsView.cs
File metadata and controls
38 lines (36 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace BcmMigrationTool
{
using System;
using System.Collections.Generic;
public partial class BCMContactsView
{
public Nullable<System.Guid> EntryGUID { get; set; }
public bool IsDeletedLocally { get; set; }
public Nullable<System.Guid> ParentEntryID { get; set; }
public Nullable<System.DateTime> ModifiedOn { get; set; }
public string FullName { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string MiddleName { get; set; }
public string Prefix { get; set; }
public string Suffix { get; set; }
public string JobTitle { get; set; }
public string Email1Address { get; set; }
public string Email2Address { get; set; }
public string Email3Address { get; set; }
public string BusinessTelephoneNumber { get; set; }
public string HomeTelephoneNumber { get; set; }
public string MobileTelephoneNumber { get; set; }
public string BusinessFaxNumber { get; set; }
public string HomeFaxNumber { get; set; }
public string OtherFaxNumber { get; set; }
}
}