Enforce nullability in RombaSharp program

This commit is contained in:
Matt Nadareski
2024-03-06 01:04:51 -05:00
parent fe0dccb8d2
commit d7a317c1aa
27 changed files with 53 additions and 66 deletions

View File

@@ -1,8 +1,7 @@
using System.Collections.Generic;
using System.IO;
using SabreTools.Help;
using Microsoft.Data.Sqlite;
using SabreTools.Help;
namespace RombaSharp.Features
{
@@ -14,7 +13,7 @@ namespace RombaSharp.Features
public Export()
{
Name = Value;
Flags = new List<string>() { "export" };
Flags = ["export"];
Description = "Exports db to export.csv";
_featureType = ParameterType.Flag;
LongDescription = "Exports db to standardized export.csv";