mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-17 22:05:08 +00:00
24 lines
900 B
C#
24 lines
900 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Daybreak.Models.Builds
|
|
{
|
|
public sealed class BuildMetadata
|
|
{
|
|
public List<int> Base64Decoded { get; set; }
|
|
public List<string> BinaryDecoded { get; set; }
|
|
public int Header { get; set; }
|
|
public int VersionNumber { get; set; }
|
|
public int ProfessionIdLength { get; set; }
|
|
public int PrimaryProfessionId { get; set; }
|
|
public int SecondaryProfessionId { get; set; }
|
|
public int AttributeCount { get; set; }
|
|
public int AttributesLength { get; set; }
|
|
public int SkillsLength { get; set; }
|
|
public bool TailPresent { get; set; }
|
|
public bool NewTemplate { get; set; }
|
|
public List<int> SkillIds { get; set; } = new();
|
|
public List<int> AttributesIds { get; set; } = new();
|
|
public List<int> AttributePoints { get; set; } = new();
|
|
}
|
|
}
|