16 lines
374 B
C#
16 lines
374 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace public_valetax.DTOs
|
|
{
|
|
public class MRange_MJournalInfo
|
|
{
|
|
[JsonPropertyName("skip")]
|
|
public int Skip { get; set; }
|
|
|
|
[JsonPropertyName("count")]
|
|
public int Count { get; set; }
|
|
|
|
[JsonPropertyName("items")]
|
|
public ICollection<MJournalInfo> Items { get; set; } = [];
|
|
}
|
|
} |