namespace ReC.Application.Common.Dto; public record ConnectionDto { public short? Id { get; set; } public string? Bezeichnung { get; set; } public string? SqlProvider { get; set; } public string? Server { get; set; } public string? Datenbank { get; set; } public string? Username { get; set; } public string? Password { get; set; } public string? Bemerkung { get; set; } public bool? Aktiv { get; set; } public string? ErstelltWer { get; set; } public DateTime? ErstelltWann { get; set; } public string? GeandertWer { get; set; } public DateTime? GeaendertWann { get; set; } public bool? SysConnection { get; set; } }