// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. using System; namespace Microsoft.AppCenter.Unity.Distribute { /// /// Release details. /// public class ReleaseDetails { internal ReleaseDetails() { } /// /// Release identifier. /// /// Release identifier. public int Id { get; internal set; } /// /// Build number or version code. /// /// The version. public string Version { get; internal set; } /// /// Human readable version. /// /// The version. public string ShortVersion { get; internal set; } /// /// Release notes. /// /// The release notes. public string ReleaseNotes { get; internal set; } /// /// Release notes URL. /// /// The release notes URL. public Uri ReleaseNotesUrl { get; internal set; } /// /// Returns true if this release update is mandatory, otherwise false. /// /// true if mandatory update; otherwise, false. public bool MandatoryUpdate { get; internal set; } } }