Select Git revision
-
Tobias Weckenmann authoredTobias Weckenmann authored
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; }
}
}