mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
13 lines
337 B
C#
13 lines
337 B
C#
namespace SabreTools.DatFiles
|
|
{
|
|
/// <summary>
|
|
/// Class used during deduplication
|
|
/// </summary>
|
|
public struct ItemMappings(DatItems.DatItem item, long machineId, long sourceId)
|
|
{
|
|
public DatItems.DatItem Item = item;
|
|
public long MachineId = machineId;
|
|
public long SourceId = sourceId;
|
|
}
|
|
}
|