This commit is contained in:
2025-10-27 17:39:18 -04:00
commit 31f723bea4
1579 changed files with 642409 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
namespace Prefab.Data.Seeder;
/// <summary>
/// Indicates when a data loader should be run.
/// </summary>
public enum RunMode
{
/// <summary>
/// Data loader will be run only for a newly-initialized database
/// </summary>
RunOnFirstLoadOnly,
/// <summary>
/// Data loader will be run once only in a given database
/// </summary>
SingleRun,
/// <summary>
/// Data loader will run every time the app starts up
/// </summary>
RunAlways
}