Files

19 lines
443 B
C#
Raw Permalink Normal View History

2025-12-26 16:40:32 +03:00
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; }
}
}