mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-16 21:36:51 +00:00
27 lines
441 B
C#
27 lines
441 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Packaging.Targets.Rpm
|
|
{
|
|
internal class IndexRecord
|
|
{
|
|
public IndexHeader Header
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public object Value
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"{this.Value} ({this.Header.Type})";
|
|
}
|
|
}
|
|
}
|