namespace Prefab.Data.Seeder;
///
/// Options for a specific implementation.
///
/// The seeder type these options apply to.
public class SeederOptions
{
///
/// Gets or sets when the seeder should execute.
///
public RunMode RunMode { get; set; } = RunMode.RunOnFirstLoadOnly;
}