using System.Runtime.Serialization;
namespace Models
{
///
/// A step of preparation
///
/// The step's name
/// The step's instructions / description
[DataContract]
public record PreparationStep([property: DataMember] string Name, [property: DataMember] string Description);
}