using Prefab.Domain.Common;
namespace Prefab.Data.Entities;
///
/// Captures metadata about seeder executions to prevent duplicate runs.
///
public class SeederLog : Entity
{
///
/// Gets the seeder identifier.
///
public string SeederName { get; init; } = string.Empty;
///
/// Gets the run mode (e.g., Development or Production) used for the execution.
///
public string RunMode { get; init; } = string.Empty;
///
/// Gets the timestamp when the seeder completed.
///
public DateTime RunAt { get; init; }
}