9 lines
195 B
C#
9 lines
195 B
C#
namespace Socialize.Infrastructure.Development;
|
|
|
|
public record DevelopmentSeedOptions
|
|
{
|
|
public const string SectionName = "DevelopmentSeed";
|
|
|
|
public bool Enabled { get; init; } = true;
|
|
}
|