-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDimContactInformation.cs
More file actions
33 lines (19 loc) · 957 Bytes
/
DimContactInformation.cs
File metadata and controls
33 lines (19 loc) · 957 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
28
29
30
31
32
33
using System;
using System.Collections.Generic;
namespace api.Models.Ttv;
public partial class DimContactInformation
{
public int Id { get; set; }
public string ContactLabel { get; set; }
public int DimInfrastructureId { get; set; }
public int DimServiceId { get; set; }
public string SourceId { get; set; }
public string SourceDescription { get; set; }
public DateTime? Created { get; set; }
public DateTime? Modified { get; set; }
public virtual ICollection<DimAddress> DimAddresses { get; set; } = new List<DimAddress>();
public virtual ICollection<DimEmailAddrress> DimEmailAddrresses { get; set; } = new List<DimEmailAddrress>();
public virtual DimInfrastructure DimInfrastructure { get; set; }
public virtual DimService DimService { get; set; }
public virtual ICollection<DimTelephoneNumber> DimTelephoneNumbers { get; set; } = new List<DimTelephoneNumber>();
}