Skip to content
Snippets Groups Projects
Select Git revision
  • cb2db0e8bcbe36faa9970296cc6b2b6b60f53d02
  • main default protected
  • dev protected
  • Issue/3090-tosProblems
  • Issue/3178-iconColorBug
  • Issue/3176-addNewNFDI4INGLogo
  • Issue/3141-rdsNoLonga
  • Issue/3180-fixMetadataNotLoading
  • Issue/3177-resourceTypeDescriptionTexts
  • Issue/3160-deactivateDownloadForFolders
  • Issue/3111-fixLoadingGitLabResource
  • Issue/3133-subProjectsChanges
  • Issue/3139-dsnrw
  • Issue/3167-changeTextAndAddLink
  • Issue/3070-newIconsForResourceTypes
  • Issue/3145-redesignLoginPage
  • Issue/3093-moreInformationInTheDeletionEmails
  • Issue/3040-closeTokenWindowWithXButton
  • Issue/3152-fixResourceStore
  • Issue/xxxx-DuckDBTest
  • Issue/3152-fixUpdateRequestPayload
  • v3.19.1
  • v3.19.0
  • v3.18.0
  • v3.17.2
  • v3.17.1
  • v3.17.0
  • v3.16.1
  • v3.16.0
  • v3.15.6
  • v3.15.5
  • v3.15.4
  • v3.15.3
  • v3.15.2
  • v3.15.1
  • v3.15.0
  • v3.14.0
  • v3.13.1
  • v3.13.0
  • v3.12.0
  • v3.11.0
41 results

MetadataManager.vue

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Resource.cs 1.48 KiB
    using System;
    using System.Collections.Generic;
    
    // Code scaffolded by EF Core assumes nullable reference types (NRTs) are not used or disabled.
    // If you have enabled NRTs for your project, then un-comment the following line:
    // #nullable disable
    
    namespace Coscine.Database.DataModel
    {
        public partial class Resource
        {
            public Resource()
            {
                ProjectResources = new HashSet<ProjectResource>();
                ResourceDisciplines = new HashSet<ResourceDiscipline>();
            }
    
            public Guid Id { get; set; }
            public Guid TypeId { get; set; }
            public string ResourceName { get; set; }
            public string DisplayName { get; set; }
            public Guid? VisibilityId { get; set; }
            public Guid? LicenseId { get; set; }
            public string Keywords { get; set; }
            public string UsageRights { get; set; }
            public Guid? ResourceTypeOptionId { get; set; }
            public string Description { get; set; }
            public string ApplicationProfile { get; set; }
            public string FixedValues { get; set; }
            public Guid? Creator { get; set; }
            public string Archived { get; set; }
    
            public virtual License License { get; set; }
            public virtual ResourceType Type { get; set; }
            public virtual Visibility Visibility { get; set; }
            public virtual ICollection<ProjectResource> ProjectResources { get; set; }
            public virtual ICollection<ResourceDiscipline> ResourceDisciplines { get; set; }
        }
    }