16 lines
343 B
C#
16 lines
343 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Profile;
|
|
|
|
public class MessageContentRagfair
|
|
{
|
|
[JsonPropertyName("offerId")]
|
|
public string? OfferId { get; set; }
|
|
|
|
[JsonPropertyName("count")]
|
|
public int? Count { get; set; }
|
|
|
|
[JsonPropertyName("handbookId")]
|
|
public string? HandbookId { get; set; }
|
|
}
|