Files
dotnet-packaging/Packaging.Targets/Rpm/Section.cs
2017-10-06 23:25:58 +02:00

18 lines
349 B
C#

using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace Packaging.Targets.Rpm
{
internal class Section<K>
{
public RpmHeader Header
{
get;
set;
}
public Dictionary<K, IndexRecord> Records
{ get; set; } = new Dictionary<K, IndexRecord>();
}
}