From 9ecaf8350b1d1ea59a82507f103644b4edc0acfd Mon Sep 17 00:00:00 2001 From: Blake Ridgway Date: Wed, 18 Jun 2025 21:35:39 -0500 Subject: [PATCH] chore: clean up unneeded comment now that it works --- Models/LawnCareEvent.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Models/LawnCareEvent.cs b/Models/LawnCareEvent.cs index d5e4c36..e43d501 100644 --- a/Models/LawnCareEvent.cs +++ b/Models/LawnCareEvent.cs @@ -31,14 +31,11 @@ public class LawnCareEvent [Required] [Display(Name = "Activity Type")] public LawnCareEventType EventType { get; set; } - - // --- THIS IS THE LINE TO CHECK --- - // Make sure this property exists and is spelled correctly. + [Required] [DataType(DataType.Date)] [Display(Name = "Date")] public DateTime EventDate { get; set; } - // --------------------------------- [Display(Name = "Mowing Pattern")] public MowingPattern? MowingPattern { get; set; }