Files
plant-man/plant-manager/Data/Models/CareActivity.cs
T
2026-05-24 13:18:57 +00:00

15 lines
428 B
C#

namespace plant_manager.Data.Models
{
public class CareActivity
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string? Notes { get; set; }
public List<CareActivityAction> Actions { get; set; } = [];
public List<ActionLog> ActionLogs { get; set; } = [];
public List<PlantCareSchedule> PlantCareSchedules { get; set; } = [];
}
}