Add ExtraIni classes

This commit is contained in:
Matt Nadareski
2020-08-21 10:15:38 -07:00
parent bcd765b375
commit be71748d14
2 changed files with 135 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using System.Collections.Generic;
namespace SabreTools.Library.Filtering
{
public class ExtraIni
{
/// <summary>
/// List of extras to apply
/// </summary>
public List<ExtraIniItem> Items { get; set; } = new List<ExtraIniItem>();
}
}