Skip to content
Snippets Groups Projects
Select Git revision
  • production_stable
  • master default
  • gcc6
  • fparser-pkgconfig
  • production
  • latest_stable
  • production_stable_integration
  • claytest
  • clayton
  • qtosg
  • collada14
  • fixprinfsegv
  • cuong
  • tags/0.8.0
  • tags/0.6.6
  • tags/0.6.4
  • tags/0.6.2
  • tags/0.6.0
  • tags/0.5.0
  • tags/0.4.2
  • v0.8.2
  • v0.8.0
  • v0.6.6
  • v0.6.4
  • v0.6.2
  • v0.6.0
  • v0.5.0
  • v0.4.2
  • v0.4.1
  • v0.4.0
  • v0.3.2
  • v0.3.1
  • v0.3.0
33 results

xml2rst.xsl

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; }
        }
    }