Skip to content

Commit

Permalink
Replace LayerNavigation with LayerSet
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdewid committed Apr 24, 2024
1 parent 0eff893 commit a3a87c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/FunderMaps.Core/Entities/Mapset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@ public sealed class Mapset : IEntityIdentifier<Guid>
/// </summary>
public object? LayerSet { get; set; }

// TODO: Has been replaced by LayerSet
/// <summary>
/// List of layers in this mapset.
/// </summary>
public List<Layer> LayerNavigation { get; set; } = new();
public List<Layer> LayerNavigation { get; set; } = [];
}

0 comments on commit a3a87c0

Please sign in to comment.