namespace FoodLabeling.Application.Contracts.Dtos.Dashboard; /// /// 日趋势点 /// public class DashboardDailyTrendPointDto { /// 日期(yyyy-MM-dd) public string Date { get; set; } = string.Empty; /// public int Value { get; set; } }