RecipeStep.cs 384 B

1234567891011121314151617
  1. using System.ComponentModel.DataAnnotations;
  2. namespace Recepie.Models
  3. {
  4. public class RecipeStep
  5. {
  6. [Key]
  7. public int Id { get; set; }
  8. public int RecipeId { get; set; }
  9. public int StepNumber { get; set; }
  10. public string Text { get; set; } = string.Empty;
  11. // Navigation property
  12. public Recipe? Recipe { get; set; }
  13. }
  14. }