Skip to content
Snippets Groups Projects
Select Git revision
  • b7b526e67fad61e147663d7aecba5943be1900b7
  • main default protected
  • feature/new_systems_methodology
  • fix/missing-api-documentation
  • feature/python_example_folder_update
  • beta_release protected
  • fix/revert-gitlab-config
  • fix/citationEcologicalAssessment
  • documentation/styleupdate
  • feature/lightMode
  • documentation/create_mission_xml
  • 28-empennage-design-update-documentation-according-to-workshop
  • documentation/fix-dot-equations
  • documentation/propulsion-design-module
  • documentation/gitlab-workflow
  • documentation/cost_estimation_update
  • documentation/mkdocs_python_update
  • documentation/tank_design_update
  • documentation/landing_gear_design_update
  • documentation/fuselage_design_update
  • documentation/global-header-file-setup
  • 0.5.0
22 results

changelog.md

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    To find the state of this project's repository at the time of any of these versions, check out the tags.
    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; }
        }
    }