Files
social-media/backend/src/Socialize.Api/Infrastructure/Development/DevelopmentSeedOptions.cs
2026-04-29 20:58:36 -04:00

9 lines
199 B
C#

namespace Socialize.Api.Infrastructure.Development;
public record DevelopmentSeedOptions
{
public const string SectionName = "DevelopmentSeed";
public bool Enabled { get; init; } = true;
}