Skip to content
Snippets Groups Projects
Select Git revision
  • 075d60ebcc010929904bf9430aeecf6f9b5a2f91
  • master default protected
  • dev_2022
  • patch-1
  • develop
  • 50-use-ubuntus-libhidapi
  • issue-highLevelDispatch
  • issue-highLevelDesign
  • issue-motorStartBug
  • issue-commandLayerDesign
  • v1.0
  • v0.4-rc.13
  • v0.4-rc.12
  • v0.4-rc.11
  • v0.4-rc.10
  • v0.4-rc.9
  • v0.3-rc.8
  • v0.3-rc.7
  • v0.3-rc.6
  • v0.3-rc.5
  • v0.3-rc.4
  • v0.3-rc.3
  • v0.3-rc.2
  • v0.3-rc.1
  • v0.3-rc
  • v0.2
  • v0.1.1
  • v0.1
28 results

str2bool.m

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