mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
16 lines
383 B
C#
16 lines
383 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Wabbajack.BuildServer.Model.Models
|
|
{
|
|
public class IndexedFile
|
|
{
|
|
public long Hash { get; set; }
|
|
public byte[] Sha256 { get; set; }
|
|
public byte[] Sha1 { get; set; }
|
|
public byte[] Md5 { get; set; }
|
|
public int Crc32 { get; set; }
|
|
public long Size { get; set; }
|
|
}
|
|
}
|