Skip to content

IFakerFood

baileydauterman edited this page Jan 6, 2025 · 2 revisions
namespace Faker.NET.Interfaces.Modules;

public interface IFakerFood
{
    public string Adjective();
    public string Description();
    public string Dish();
    public string EthnicCategory();
    public string Fruit();
    public string Ingredient();
    public string Meat();
    public string Spice();
    public string Vegetable();
}

Clone this wiki locally