2025-01-22 13:32:07 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace AvaloniaApplication3.Date;
|
|
|
|
|
|
|
|
public class Meropriatie
|
|
|
|
{
|
|
|
|
public int numero { get; set; }
|
|
|
|
public string act { get; set; }
|
|
|
|
public DateOnly date { get; set; }
|
|
|
|
public int day { get; set; }
|
|
|
|
public int city { get; set; }
|
2025-01-29 08:35:51 +00:00
|
|
|
public Actions action { get; set; }
|
|
|
|
public Country country { get; set; }
|
2025-01-22 13:32:07 +00:00
|
|
|
}
|