namespace WorkFlow.Application.Dto;
public record ObjectStateHistDto
{
public virtual string? Intl { get; set; }
///
/// Holds state 2, 3 and 4 as a list of strings.
///
public IEnumerable Others { get; set; } = Array.Empty();
public string? ChangedWho { get; set; }
public DateTime? ChangedWhen { get; set; }
}