19 lines
443 B
C#
19 lines
443 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace public_valetax.DTOs
|
|
{
|
|
public class MJournal
|
|
{
|
|
[JsonPropertyName("text")]
|
|
public string Text { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("id")]
|
|
public long Id { get; set; }
|
|
|
|
[JsonPropertyName("eventId")]
|
|
public long EventId { get; set; }
|
|
|
|
[JsonPropertyName("createdAt")]
|
|
public DateTime CreatedAt { get; set; }
|
|
}
|
|
} |