-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDimInfrastructure.cs
More file actions
57 lines (31 loc) · 1.93 KB
/
DimInfrastructure.cs
File metadata and controls
57 lines (31 loc) · 1.93 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
using System;
using System.Collections.Generic;
namespace api.Models.Ttv;
public partial class DimInfrastructure
{
public int Id { get; set; }
public string LocalIdentifier { get; set; }
public string Acronym { get; set; }
public bool? FinlandRoadmap { get; set; }
public int ResponsibleOrganizationId { get; set; }
public int DimStartDate { get; set; }
public int DimEndDate { get; set; }
public int DimRegisteredDataSourceId { 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<DimContactInformation> DimContactInformations { get; set; } = new List<DimContactInformation>();
public virtual ICollection<DimDescriptiveItem> DimDescriptiveItems { get; set; } = new List<DimDescriptiveItem>();
public virtual DimDate DimEndDateNavigation { get; set; }
public virtual ICollection<DimPid> DimPids { get; set; } = new List<DimPid>();
public virtual DimRegisteredDataSource DimRegisteredDataSource { get; set; }
public virtual ICollection<DimService> DimServices { get; set; } = new List<DimService>();
public virtual DimDate DimStartDateNavigation { get; set; }
public virtual ICollection<DimWebLink> DimWebLinks { get; set; } = new List<DimWebLink>();
public virtual ICollection<FactContribution> FactContributions { get; set; } = new List<FactContribution>();
public virtual ICollection<FactReferencedatum> FactReferencedata { get; set; } = new List<FactReferencedatum>();
public virtual ICollection<FactRelation> FactRelationFromInfrastructures { get; set; } = new List<FactRelation>();
public virtual ICollection<FactRelation> FactRelationToInfrastructures { get; set; } = new List<FactRelation>();
public virtual DimOrganization ResponsibleOrganization { get; set; }
}