Skip to content

Commit

Permalink
chore: review merge request for adding resources
Browse files Browse the repository at this point in the history
Co-authored-by: Philipp Wörndle <[email protected]>
Signed-off-by: Stefan Pfahler <[email protected]>
  • Loading branch information
stefanpfahler and woerndle committed Dec 31, 2022
1 parent d368af9 commit 566017e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ namespace Deskstar.Models;

public class CreateBuildingDto
{


[Required]
public string BuildingName { get; set; } = null!;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ namespace Deskstar.Models;

public class CreateDeskTypeDto
{
public CreateDeskTypeDto()
{
}
public CreateDeskTypeDto() { }

[Required]
public string DeskTypeName { get; set; } = null!;
Expand Down
8 changes: 4 additions & 4 deletions src/deskstar-frontend/deskTypes.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
export const deskTypes = [
{
typeId: "1",
typeName: "Standard",
deskTypeId: "1",
deskTypeName: "Standard",
},
{
typeId: "2",
typeName: "Height Adjustable",
deskTypeId: "2",
deskTypeName: "Height Adjustable",
}
]

0 comments on commit 566017e

Please sign in to comment.