using System.Collections.Generic;
namespace SabreTools.Library.Filtering
{
public class ExtraIni
{
#region Fields
///
/// List of extras to apply
///
public List Items { get; set; } = new List();
#endregion
#region Extras Population
///
/// Populate item using field:file inputs
///
/// Field and file combinations
public void PopulateFromList(List inputs)
{
foreach (string input in inputs)
{
ExtraIniItem item = new ExtraIniItem();
item.PopulateFromInput(input);
Items.Add(item);
}
}
#endregion
}
}