exciting-aftermath/Portfolio.Domain/Features/Pokemon/Ingredient.cs

16 lines
341 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Portfolio.Domain.Features.Pokemon
{
public class Ingredient
{
public string Ing { get; set; }
public string Description { get; set; }
public string ImageURL { get; set; }
}
}