mirror of
https://github.com/oliverbooth/VpSharp
synced 2024-11-22 19:18:47 +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.
|
/// 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.
|
||||||
|
Loading…
Reference in New Issue
Block a user