mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
14 lines
320 B
C#
14 lines
320 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Wabbajack.BuildServer.Model.Models
|
|
{
|
|
public partial class ArchiveContent
|
|
{
|
|
public long Parent { get; set; }
|
|
public long Child { get; set; }
|
|
public string Path { get; set; }
|
|
public byte[] PathHash { get; set; }
|
|
}
|
|
}
|