namespace Unity.Cloud.UserReporting
{
///
/// Represents a user report named value.
///
public struct UserReportNamedValue
{
#region Constructors
///
/// Creates a new instance of the class.
///
/// The name.
/// The value.
public UserReportNamedValue(string name, string value)
{
this.Name = name;
this.Value = value;
}
#endregion
#region Properties
///
/// Gets or sets the name.
///
public string Name { get; set; }
///
/// Gets or sets the value.
///
public string Value { get; set; }
#endregion
}
}