Skip to content
Snippets Groups Projects
Select Git revision
  • Product/1116-pidApiExtension
  • master default protected
  • gitkeep
  • dev protected
  • Issue/2309-docs
  • Issue/2259-updatePids
  • Issue/1321-pidEnquiryOverhaul
  • Hotfix/2087-efNet6
  • Issue/1910-MigrationtoNET6.0
  • Sprint/2022-01
  • Sprint/2021-23
  • Hotfix/82-updateDepsOfAPIs
  • Sprint/2021-11
  • Hotfix/1516-pidFix
  • Sprint/2021-08
  • Sprint/2021-05
  • Product/1188-LoggingExtended
  • Topic/1221-LogginExtendedNew
  • Hotfix/1370-swaggerDescription
  • Sprint/2021-04
  • Product/789-userContactEmail
  • v2.4.2
  • v2.4.1
  • v2.4.0
  • v2.3.2
  • v2.3.1
  • v2.3.0
  • v2.2.6
  • v2.2.5
  • v2.2.4
  • v2.2.3
  • v2.2.2
  • v2.2.1
  • v2.2.0
  • v2.1.0
  • v2.0.1
  • v2.0.0
  • v1.2.1
  • v1.2.0
  • v1.1.2
  • v1.1.1
41 results

build.ps1

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    ApplicationProfile.cs 943 B
    using System;
    using Newtonsoft.Json;
    
    namespace Coscine.Api.Metadata.ParameterObjects
    {
        /// <summary>
        ///  Parameter object containing the application profile informations.
        /// </summary>
        public class ApplicationProfile
        {
            /// <summary>
            ///  Name of the application profile
            /// </summary>
            [JsonProperty("name")]
            public string Name { get; set; }
            /// <summary>
            ///  Base URL of the application profile
            /// </summary>
            [JsonProperty("base_url")]
            public string BaseURL { get; set; }
            /// <summary>
            ///  Definition of the application profile
            /// </summary>
            [JsonProperty("definition")]
            public string Definition { get; set; }
            /// <summary>
            ///  Mime type of the application profile
            /// </summary>
            [JsonProperty("mimeType")]
            public string MimeType { get; set; }
        }
    }