- 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.
18 lines
709 B
C#
18 lines
709 B
C#
namespace DigitalData.UserManager.Application.DTOs.User
|
|
{
|
|
public record class UserCreateDto
|
|
{
|
|
public string? Prename { get; init; }
|
|
public string? Name { get; init; }
|
|
public string? Username { get; init; }
|
|
public string? Shortname { get; init; }
|
|
public string? Email { get; init; }
|
|
public string Language { get; init; } = "de-DE";
|
|
public string? Comment { get; init; }
|
|
public bool? Deleted { get; init; }
|
|
public string DateFormat { get; init; } = "dd.MM.yyyy";
|
|
public string AddedWho { get; init; } = "DEFAULT";
|
|
public string? ChangedWho { get; init; }
|
|
public bool Active { get; init; } = true;
|
|
}
|
|
} |