Documentation

The CityName plugin is a plugin for the type string. It contains the top 1000 cities with the most inhabitants.
public class Address
{
  public string City { get; set; }
}

public class HelloFiller
{
  public void FillAddress()
  {
    Filler<Address> pFiller = new Filler<Address>();
    pFiller.Setup()
      .OnProperty(x => x.City).Use(new CityName());
    
    Address filledAddress = pFiller.Create();
  }
}