-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDimDescriptiveItem.cs
More file actions
59 lines (32 loc) · 1.55 KB
/
DimDescriptiveItem.cs
File metadata and controls
59 lines (32 loc) · 1.55 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
using System;
using System.Collections.Generic;
namespace api.Models.Ttv;
public partial class DimDescriptiveItem
{
public int Id { get; set; }
public int DimStartDate { get; set; }
public int? DimEndDate { get; set; }
public string DescriptiveItem { get; set; }
public string DescriptiveItemType { get; set; }
public string DescriptiveItemLanguage { get; set; }
public string SourceId { get; set; }
public string SourceDescription { get; set; }
public DateTime? Created { get; set; }
public DateTime? Modified { get; set; }
public int DimResearchProjectId { get; set; }
public int DimRegisteredDataSourceId { get; set; }
public int DimPublicationId { get; set; }
public int DimResearchDatasetId { get; set; }
public int DimInfrastructureId { get; set; }
public int DimServiceId { get; set; }
public int DimResearchDataCatalogId { get; set; }
public virtual DimDate DimEndDateNavigation { get; set; }
public virtual DimInfrastructure DimInfrastructure { get; set; }
public virtual DimPublication DimPublication { get; set; }
public virtual DimRegisteredDataSource DimRegisteredDataSource { get; set; }
public virtual DimResearchDataCatalog DimResearchDataCatalog { get; set; }
public virtual DimResearchDataset DimResearchDataset { get; set; }
public virtual DimResearchProject DimResearchProject { get; set; }
public virtual DimService DimService { get; set; }
public virtual DimDate DimStartDateNavigation { get; set; }
}