Init commit

This commit is contained in:
Blake Ridgway 2025-06-17 13:22:51 -05:00
parent 9ab798fd0f
commit 1f50fedb80
87 changed files with 75678 additions and 0 deletions

View file

@ -0,0 +1,10 @@
namespace turf_tasker.Models;
public class DashboardViewModel
{
public DateTime? LastMowDate { get; set; }
public DateTime? LastWaterDate { get; set; }
public DateTime? LastFertilizeDate { get; set; }
public DateTime? LastAerationDate { get; set; }
public MowingPattern? NextMowingPattern { get; set; }
}