Add new record

This commit is contained in:
Chomp
2025-06-06 13:24:14 +01:00
parent 855c5e39c0
commit de36e24772
@@ -0,0 +1,22 @@
using System.Text.Json.Serialization;
namespace SPTarkov.Server.Core.Models.Eft.Ws
{
public record WsRagfairNewRating : WsNotificationEvent
{
[JsonPropertyName("rating")]
public double? Rating
{
get;
set;
}
[JsonPropertyName("isRatingGrowing")]
public bool? IsRatingGrowing
{
get;
set;
}
}
}