namespace ShoopNCook.Models { internal class PreparationStep { public PreparationStep(string name, string description) { this.Name = name; this.Description = description; } public string Name { get; init; } public string Description { get; init; } } }