changes
This commit is contained in:
16
DTOs/MRange_MJournalInfo.cs
Normal file
16
DTOs/MRange_MJournalInfo.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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; } = [];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user