From 83d6c8a76d403e888d4595299e67db6c88a87b2a Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Sun, 4 Dec 2022 19:19:11 +0000 Subject: [PATCH] Initialize non-nullable properties --- VpSharp/src/Entities/VirtualParadiseModelObject.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/VpSharp/src/Entities/VirtualParadiseModelObject.cs b/VpSharp/src/Entities/VirtualParadiseModelObject.cs index ac352eb..ca81449 100644 --- a/VpSharp/src/Entities/VirtualParadiseModelObject.cs +++ b/VpSharp/src/Entities/VirtualParadiseModelObject.cs @@ -25,19 +25,19 @@ public class VirtualParadiseModelObject : VirtualParadiseObject /// Gets the value of this object's Description field. /// /// The value of this object's Description field. - public string Action { get; internal set; } + public string Action { get; internal set; } = string.Empty; /// /// Gets the value of this object's Description field. /// /// The value of this object's Description field. - public string Description { get; internal set; } + public string Description { get; internal set; } = string.Empty; /// /// Gets the value of this object's Model field. /// /// The value of this object's Model field. - public string Model { get; internal set; } + public string Model { get; internal set; } = string.Empty; /// /// Modifies the object.