aboutsummaryrefslogtreecommitdiff
path: root/src/Enmarcha.Experimental.ServiceViewer/Views/Services/DaysInFeed.cshtml.cs
blob: e633fcb7b5a020c79f20a711467c4955a69c5fe0 (plain)
1
2
3
4
5
6
7
namespace Enmarcha.Experimental.ServiceViewer.Views.Services;

public class DaysInFeedModel
{
    public List<DateTime> Days { get; set; } = [];
    public DateOnly Today { get; set; }
}