namespace ConsoleApp2.Options; public class DatabaseOutputOptions { /// /// 数据库连接字符串 /// public string? ConnectionString { get; set; } public int MaxAllowedPacket { get; set; } = 64*1024*1024; }