namespace FoodLabeling.Application.Contracts.Dtos.LabelAlertTimer;
///
/// 检查告警计时器是否过期出参
///
public class LabelAlertTimerCheckExpiredOutputDto
{
/// 是否找到计时器记录
public bool Found { get; set; }
/// 是否已过期;无记录时为 false(仅展示用,不用于拦截打印)
public bool IsExpired { get; set; }
public DateTime? ExpiresAt { get; set; }
/// 剩余秒数(已过期为 0)
public int RemainingSeconds { get; set; }
/// 状态:expired 或 running
public string? Status { get; set; }
public string? Title { get; set; }
public string? Subtitle { get; set; }
public string? TimerId { get; set; }
public string? BatchId { get; set; }
}