-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CSCTTV-3637 automatic publishing new orcid data (#234)
* Modify profile settings handling. Add setting to automatically publish new ORCID data. * TTV model update 15.5.2024 (#232) * TTV model update 20.5.2024 (#233) * TTV model update 15.5.2024 (#232)
- Loading branch information
Showing
9 changed files
with
2,410 additions
and
2,011 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,83 +1,82 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
|
||
namespace api.Models.Ttv; | ||
|
||
public partial class DimPid | ||
{ | ||
public int Id { get; set; } | ||
|
||
|
||
public string PidContent { get; set; } | ||
|
||
|
||
public string PidType { get; set; } | ||
|
||
|
||
public int DimOrganizationId { get; set; } | ||
|
||
|
||
public int DimKnownPersonId { get; set; } | ||
|
||
|
||
public int DimPublicationId { get; set; } | ||
|
||
|
||
public int DimServiceId { get; set; } | ||
|
||
|
||
public int DimInfrastructureId { get; set; } | ||
|
||
|
||
public int DimPublicationChannelId { get; set; } | ||
|
||
|
||
public int DimResearchDatasetId { get; set; } | ||
|
||
public int DimResearchDataCatalogId { get; set; } | ||
|
||
|
||
public int DimResearchActivityId { get; set; } | ||
|
||
|
||
public int DimEventId { get; set; } | ||
|
||
|
||
public int DimProfileOnlyPublicationId { get; set; } | ||
|
||
|
||
public string SourceId { get; set; } | ||
|
||
|
||
public string SourceDescription { get; set; } | ||
|
||
|
||
public DateTime? Created { get; set; } | ||
|
||
|
||
public DateTime? Modified { get; set; } | ||
|
||
|
||
public int? DimProfileOnlyDatasetId { get; set; } | ||
|
||
|
||
public int? DimProfileOnlyFundingDecisionId { get; set; } | ||
|
||
|
||
public int? DimResearchProjectId { get; set; } | ||
|
||
|
||
public int? DimResearchCommunityId { get; set; } | ||
|
||
|
||
public virtual DimEvent DimEvent { get; set; } | ||
|
||
|
||
public virtual DimInfrastructure DimInfrastructure { get; set; } | ||
|
||
|
||
public virtual DimKnownPerson DimKnownPerson { get; set; } | ||
|
||
|
||
public virtual DimOrganization DimOrganization { get; set; } | ||
|
||
|
||
public virtual DimProfileOnlyDataset DimProfileOnlyDataset { get; set; } | ||
|
||
|
||
public virtual DimProfileOnlyFundingDecision DimProfileOnlyFundingDecision { get; set; } | ||
|
||
|
||
public virtual DimProfileOnlyPublication DimProfileOnlyPublication { get; set; } | ||
|
||
|
||
public virtual DimPublication DimPublication { get; set; } | ||
|
||
|
||
public virtual DimPublicationChannel DimPublicationChannel { get; set; } | ||
|
||
|
||
public virtual DimResearchActivity DimResearchActivity { get; set; } | ||
|
||
|
||
public virtual DimResearchCommunity DimResearchCommunity { get; set; } | ||
|
||
|
||
public virtual DimResearchDataCatalog DimResearchDataCatalog { get; set; } | ||
|
||
|
||
public virtual DimResearchDataset DimResearchDataset { get; set; } | ||
|
||
|
||
public virtual DimService DimService { get; set; } | ||
|
||
|
||
public virtual ICollection<FactFieldValue> FactFieldValueDimPidIdOrcidPutCodeNavigations { get; set; } = new List<FactFieldValue>(); | ||
|
||
|
||
public virtual ICollection<FactFieldValue> FactFieldValueDimPids { get; set; } = new List<FactFieldValue>(); | ||
} |
Oops, something went wrong.