- Ersetzung von ITranslateService durch IStringLocalizer<X> für verbesserte Lokalisierung. - Aktualisierung der DTO-Klassen entsprechend der neuesten Core.DTO-Struktur. - Integration der neuen Klassen Result und DataResult aus Core.DTO für standardisierte Serviceantworten.
16 lines
412 B
C#
16 lines
412 B
C#
using DigitalData.UserManager.Application.DTOs.Group;
|
|
using DigitalData.UserManager.Application.DTOs.User;
|
|
|
|
namespace DigitalData.UserManager.Application.DTOs.GroupOfUser
|
|
{
|
|
public record GroupOfUserReadDto(
|
|
int Guid,
|
|
int UserId,
|
|
int GroupId,
|
|
string? Comment,
|
|
string AddedWho,
|
|
string? ChangedWho,
|
|
UserReadDto User,
|
|
GroupReadDto Group
|
|
);
|
|
} |