2025-01-05 17:05:23 +03:00
|
|
|
namespace Nebula.Shared.Models;
|
2024-12-27 19:15:33 +03:00
|
|
|
|
|
|
|
|
[Flags]
|
|
|
|
|
public enum DownloadStreamHeaderFlags
|
|
|
|
|
{
|
|
|
|
|
None = 0,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// If this flag is set on the download stream, individual files have been pre-compressed by the server.
|
|
|
|
|
/// This means each file has a compression header, and the launcher should not attempt to compress files itself.
|
|
|
|
|
/// </summary>
|
|
|
|
|
PreCompressed = 1 << 0
|
|
|
|
|
}
|