using System.Runtime.Serialization;
namespace Umbraco.Cms.Core.Telemetry.Models;
///
/// Serializable class containing information about an installed package.
///
[DataContract(Name = "packageTelemetry")]
public class PackageTelemetry
{
///
/// Gets or sets the identifier of the installed package.
///
///
/// The identifier.
///
[DataMember(Name = "id")]
public string? Id { get; set; }
///
/// Gets or sets the name of the installed package.
///
///
/// The name.
///
[DataMember(Name = "name")]
public string? Name { get; set; }
///
/// Gets or sets the version of the installed package.
///
///
/// The version.
///
[DataMember(Name = "version")]
public string? Version { get; set; }
}