Init
This commit is contained in:
13
Prefab/Data/Seeder/Options.cs
Normal file
13
Prefab/Data/Seeder/Options.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace Prefab.Data.Seeder;
|
||||
|
||||
/// <summary>
|
||||
/// Options for a specific <see cref="ISeeder"/> implementation.
|
||||
/// </summary>
|
||||
/// <typeparam name="TSeeder">The seeder type these options apply to.</typeparam>
|
||||
public class SeederOptions<TSeeder>
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets when the seeder should execute.
|
||||
/// </summary>
|
||||
public RunMode RunMode { get; set; } = RunMode.RunOnFirstLoadOnly;
|
||||
}
|
||||
Reference in New Issue
Block a user