18 lines
451 B
C#
18 lines
451 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Unbinder.Models
|
|
{
|
|
[Table("Recipes")]
|
|
public record Recipe
|
|
{
|
|
public int RecipeId { get; init; }
|
|
public string Name {get; init; } = default!;
|
|
public string ShortDescription { get; init; } = default!;
|
|
public string? Author { get; init; }
|
|
|
|
public string? RecipeText { get; init; }
|
|
|
|
public string? ImageUrl { get; init; }
|
|
}
|
|
}
|