using System; namespace ECMJobRunner.Tests.DTOs { /// /// DTO for CfgProfile entity used in tests /// public class CfgProfileDto { public bool Active { get; set; } public string ProfileName { get; set; } = string.Empty; public byte TypeId { get; set; } public string? Schedule { get; set; } public string? Comment { get; set; } public string AddedWho { get; set; } = string.Empty; public DateTime AddedWhen { get; set; } public string ChangedWho { get; set; } = string.Empty; public DateTime ChangedWhen { get; set; } } }