using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
namespace Steamworks.Data
{
///
/// Represents details of a file.
///
public struct FileDetails
{
///
/// The size of the file in bytes.
///
public ulong SizeInBytes;
public string Sha1;
public uint Flags;
}
}