fix missing prop
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
|
using Core.Models.Enums;
|
||||||
using Core.Models.Utils;
|
using Core.Models.Utils;
|
||||||
|
|
||||||
namespace Core.Models.Eft.Match;
|
namespace Core.Models.Eft.Match;
|
||||||
@@ -10,4 +11,8 @@ public record GetRaidConfigurationRequestData : RaidSettings, IRequestData
|
|||||||
|
|
||||||
[JsonPropertyName("MaxGroupCount")]
|
[JsonPropertyName("MaxGroupCount")]
|
||||||
public int? MaxGroupCount { get; set; }
|
public int? MaxGroupCount { get; set; }
|
||||||
|
|
||||||
|
[JsonPropertyName("transitionType")]
|
||||||
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||||
|
public TransitionType TransitionType { get; set; }
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user