-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathOpcMember.cs
More file actions
27 lines (25 loc) · 801 Bytes
/
OpcMember.cs
File metadata and controls
27 lines (25 loc) · 801 Bytes
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
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Prime.Models
{
[Table("OpcMember")]
public class OpcMember : BaseAuditable
{
[Key]
public int Id { get; set; }
public string FullName { get; set; }
public string Discipline { get; set; }
public string Status { get; set; }
public string MemberType { get; set; }
public string CertificationNumber { get; set; }
public string Clinic { get; set; }
public string FullClinicAddress { get; set; }
public string Address { get; set; }
public string City { get; set; }
public string Country { get; set; }
public string StateProvince { get; set; }
public string PostalCode { get; set; }
}
}