-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace Altinn.Platform.Authentication.SystemIntegrationTests.Domain; | ||
|
||
// DTO Classes | ||
public class SystemDto | ||
{ | ||
public string SystemId { get; set; } | ||
Check warning on line 6 in test/Altinn.Platform.Authentication.SystemIntegrationTests/Domain/SystemDto.cs
|
||
public string SystemVendorOrgNumber { get; set; } | ||
Check warning on line 7 in test/Altinn.Platform.Authentication.SystemIntegrationTests/Domain/SystemDto.cs
|
||
public string SystemVendorOrgName { get; set; } | ||
Check warning on line 8 in test/Altinn.Platform.Authentication.SystemIntegrationTests/Domain/SystemDto.cs
|
||
} | ||
|
||
public class SystemsDto | ||
{ | ||
public List<SystemDto> Systems { get; set; } | ||
Check warning on line 13 in test/Altinn.Platform.Authentication.SystemIntegrationTests/Domain/SystemDto.cs
|
||
} |