mirror of
https://github.com/oliverbooth/VpSharp
synced 2024-11-10 02:55:41 +00:00
Initialize non-nullable properties
This commit is contained in:
parent
e2423eac39
commit
83d6c8a76d
@ -25,19 +25,19 @@ public class VirtualParadiseModelObject : VirtualParadiseObject
|
||||
/// Gets the value of this object's <c>Description</c> field.
|
||||
/// </summary>
|
||||
/// <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>
|
||||
/// Gets the value of this object's <c>Description</c> field.
|
||||
/// </summary>
|
||||
/// <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>
|
||||
/// Gets the value of this object's <c>Model</c> field.
|
||||
/// </summary>
|
||||
/// <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>
|
||||
/// Modifies the object.
|
||||
|
Loading…
Reference in New Issue
Block a user