From f6c2568b25fc4b35b618c419895c49e18beee7fe Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Tue, 5 Aug 2025 19:24:40 +0200 Subject: [PATCH] refactor(GroupReadDto): made internal notnull --- .../DTOs/Group/GroupReadDto.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DigitalData.UserManager.Application/DTOs/Group/GroupReadDto.cs b/src/DigitalData.UserManager.Application/DTOs/Group/GroupReadDto.cs index 545bbf5..da46133 100644 --- a/src/DigitalData.UserManager.Application/DTOs/Group/GroupReadDto.cs +++ b/src/DigitalData.UserManager.Application/DTOs/Group/GroupReadDto.cs @@ -8,7 +8,7 @@ namespace DigitalData.UserManager.Application.DTOs.Group int Id, string? Name, bool? AdSync, - bool? Internal, + bool Internal, bool? Active, string? Comment, string? AddedWho,