-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
65276ab
commit db5b99b
Showing
4 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,22 @@ | ||
namespace Linker.Core.ApiModels; | ||
|
||
/// <summary> | ||
/// The request to update workspace info. | ||
/// </summary> | ||
public sealed class UpdateWorkspaceRequest | ||
{ | ||
/// <summary> | ||
/// The unique handle of the workspace. | ||
/// </summary> | ||
required public string Handle { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the name of the workspace. | ||
/// </summary> | ||
required public string Name { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the description of the workspace. | ||
/// </summary> | ||
required public string Description { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters