using System.ComponentModel.DataAnnotations; namespace Recepie.Models { public class Ingredient { [Key] public int Id { get; set; } public string? Name { get; set; } } }