mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-16 13:55:09 +00:00
18 lines
349 B
C#
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>();
|
|
}
|
|
}
|