-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathNPPESBasic.cs
More file actions
80 lines (66 loc) · 2.13 KB
/
Copy pathNPPESBasic.cs
File metadata and controls
80 lines (66 loc) · 2.13 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
using System;
namespace Forcura.NPPES.Models
{
/// <summary>
/// Basic information regarding the NPPES entry.
/// </summary>
public class NPPESBasic
{
/// <summary>
///
/// </summary>
public string ReplacementNPI { get; set; }
/// <summary>
/// EIN number on file if this is an organization.
/// </summary>
public string EIN { get; set; }
/// <summary>
/// Organization name.
/// </summary>
public string OrganizationName { get; set; }
/// <summary>
/// Parent Organization Legal Business Name
/// </summary>
public string ParentOrganizationLegalBusinessName { get; set; }
/// <summary>
/// The registered individual's first name.
/// </summary>
public string FirstName { get; set; }
/// <summary>
/// The registered individual's last name.
/// </summary>
public string LastName { get; set; }
/// <summary>
/// The registered individual's middle name.
/// </summary>
public string MiddleName { get; set; }
/// <summary>
/// The registered individual's name prefix (Dr., Sr., Ms. etc).
/// </summary>
public string NamePrefix { get; set; }
/// <summary>
/// The registered individual's name suffix (Jr., Sr. etc).
/// </summary>
public string NameSuffix { get; set; }
/// <summary>
///
/// </summary>
public string Credential { get; set; }
/// <summary>
/// The registered Individual's gender.
/// </summary>
public string Gender { get; set; }
/// <summary>
/// The registered Individual's sex.
/// </summary>
public string Sex { get; set; }
/// <summary>
/// The time the record was created.
/// </summary>
public DateTime EnumerationDate { get; set; }
/// <summary>
/// The time the information was last updated.
/// </summary>
public DateTime LastUpdated { get; set; }
}
}