using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XF.Domain.Options { public class DatabaseOptions { public bool ApplyDbMigrations { get; set; } public bool ApplySeed { get; set; } } }