2025-07-30 13:21:18 +02:00

10 lines
376 B
C#

namespace WorkFlow.Application.Dto.Config
{
public record ConfigDto(int Id,
string Title,
string String,
string AddedWho,
DateTime AddedWhen,
string? ChangedWho = null,
DateTime? ChangedWhen = null);
}