Files
dotnet-packaging/Packaging.Targets/Rpm/IndexRecord.cs

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})";
}
}
}