Skip to content

Commit

Permalink
DYN-5319 Add Missing Properties (#13537)
Browse files Browse the repository at this point in the history
* Add missing properties

* Spelling and grammar

Co-authored-by: Craig Long <[email protected]>
Co-authored-by: Trygve Wastvedt <[email protected]>
  • Loading branch information
3 people authored Nov 20, 2022
1 parent 9a790ca commit 3e9ebc0
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/DynamoCore/Configuration/DynamoPlayerFolder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,28 @@ public class DynamoPlayerFolder
public string Id { get; set; }

/// <summary>
/// Whether this folder is removable from the settings (Built-in folders are non-removable)
/// Is this folder removable from the settings (Built-in folders are non-removable)
/// </summary>
public bool IsRemovable { get; set; } = true;

/// <summary>
/// The order of the folder
/// </summary>
public int Order { get; set; } = -1;

/// <summary>
/// Is the folder path a valid path
/// </summary>
public bool IsValid { get; set; } = true;

/// <summary>
/// Is the folder path the default directory of the list
/// </summary>
public bool IsDefault { get; set; }
}

/// <summary>
/// This Class defines a group of folders assciated with a Dynamo Player or Generative Design entry point.
/// This class defines a group of folders associated with a Dynamo Player or Generative Design entry point.
/// </summary>
public class DynamoPlayerFolderGroup
{
Expand Down

0 comments on commit 3e9ebc0

Please sign in to comment.