Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
kjetilhau committed Oct 30, 2024
1 parent dcee3e9 commit e8ef71d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ namespace Equinor.ProjectExecutionPortal.Domain.Entities;
public class OnboardedApp : AuditableEntityBase, ICreationAuditable, IModificationAuditable
{
public const int AppKeyLengthMax = 200;
private readonly List<ContextType> _contextTypes = new();
private readonly List<PortalApp> _apps = new();
private readonly List<ContextType> _contextTypes = [];
private readonly List<PortalApp> _apps = [];

public OnboardedApp(string appKey)
{
Expand Down

0 comments on commit e8ef71d

Please sign in to comment.