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

15 lines
444 B
C#

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