namespace Extrudex.Domain.DTOs.Moonraker; /// /// Response DTO for the Moonraker /server/history/items endpoint. /// Wraps the paginated list of print job history items. /// public class MoonrakerHistoryResponse { /// /// The list of print job history items returned by Moonraker. /// Most recent jobs appear first (descending by start time). /// public List Items { get; set; } = []; /// /// Total number of print jobs available on the server /// (for pagination; the Items list may be a subset). /// public int TotalCount { get; set; } }