Initialize non-nullable properties

This commit is contained in:
Oliver Booth 2022-12-04 19:19:11 +00:00
parent e2423eac39
commit 83d6c8a76d
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
1 changed files with 3 additions and 3 deletions

View File

@ -25,19 +25,19 @@ public class VirtualParadiseModelObject : VirtualParadiseObject
/// Gets the value of this object's <c>Description</c> field. /// Gets the value of this object's <c>Description</c> field.
/// </summary> /// </summary>
/// <value>The value of this object's <c>Description</c> field.</value> /// <value>The value of this object's <c>Description</c> field.</value>
public string Action { get; internal set; } public string Action { get; internal set; } = string.Empty;
/// <summary> /// <summary>
/// Gets the value of this object's <c>Description</c> field. /// Gets the value of this object's <c>Description</c> field.
/// </summary> /// </summary>
/// <value>The value of this object's <c>Description</c> field.</value> /// <value>The value of this object's <c>Description</c> field.</value>
public string Description { get; internal set; } public string Description { get; internal set; } = string.Empty;
/// <summary> /// <summary>
/// Gets the value of this object's <c>Model</c> field. /// Gets the value of this object's <c>Model</c> field.
/// </summary> /// </summary>
/// <value>The value of this object's <c>Model</c> field.</value> /// <value>The value of this object's <c>Model</c> field.</value>
public string Model { get; internal set; } public string Model { get; internal set; } = string.Empty;
/// <summary> /// <summary>
/// Modifies the object. /// Modifies the object.