Skip to content

Commit

Permalink
Merge pull request #13 from bertusviljoen/feature/bertus_elevator_das…
Browse files Browse the repository at this point in the history
…hboard

feature/bertus_elevator_dashboard
  • Loading branch information
bertusviljoen authored Dec 9, 2024
2 parents 078bf41 + 3707289 commit 9ee8aa2
Show file tree
Hide file tree
Showing 12 changed files with 546 additions and 28 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
*.userosscache
*.sln.docstates


# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs

Expand Down Expand Up @@ -406,3 +407,6 @@ FodyWeavers.xsd
*.sln.iml

.containers/

.secret.json
secret.json
6 changes: 3 additions & 3 deletions src/Application/Screens/MenuSelection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ public enum MenuSelection
{
/// <summary> Login </summary>
Login,
/// <summary> Register </summary>
Register,
/// <summary> Exit </summary>
Exit
Exit,
/// <summary> Dashboard </summary>
Dashboard
}
3 changes: 3 additions & 0 deletions src/Domain/Elevators/ElevatorItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ public class ElevatorItem

/// <summary> Get or set the current floor the elevator is on. </summary>
public int CurrentFloor { get; set; }

/// <summary> Get or set the destination floor the elevator is moving to. </summary>
public int DestinationFloor { get; set; }

/// <summary> Get or set the direction the elevator is moving. </summary>
[JsonConverter(typeof(JsonStringEnumConverter))]
Expand Down
327 changes: 327 additions & 0 deletions src/Infrastructure/Migrations/20241209122830_TypoFix.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 9ee8aa2

Please sign in to comment.