This commit is contained in:
2025-12-26 16:40:32 +03:00
commit 4f1be2c3db
37 changed files with 2222 additions and 0 deletions

19
DTOs/MJournal.cs Normal file
View File

@@ -0,0 +1,19 @@
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; }
}
}