mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
13 lines
282 B
C#
13 lines
282 B
C#
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>();
|
|
}
|
|
}
|