// // Act4Status.cs // // Copyright (c) František Boháček. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using NosCore.Packets.Enumerations; namespace NosSmooth.Game.Data.Act4; /// /// Status of a faction in act4 /// /// The percentage to Mukraju. /// The current mode. /// The current time of the raid. /// The total time the raid will be for. /// The type of the raid. public record Act4FactionStatus ( short Percentage, Act4Mode Mode, long? CurrentTime, long? TotalTime, Act4Raid Raid );