Add image generation

This commit is contained in:
2025-07-15 02:42:16 +02:00
parent 9cfbdc21d0
commit 480a38baac
17 changed files with 635 additions and 12 deletions

View File

@@ -0,0 +1,14 @@
namespace HomeApi.Models;
public class TimeTable
{
public string LineNumber { get; set; } // e.g. "43", "832"
public string LineName { get; set; } // e.g. "Länstrafik - Tåg 43"
public string TransportType { get; set; } // e.g. "Tåg", "Buss"
public string Operator { get; set; } // e.g. "SL"
public string StopName { get; set; } // e.g. "Vega station (Haninge kn)"
public string DepartureTime { get; set; } // e.g. 2025-07-15 01:03
public string Direction { get; set; } // e.g. "Farsta Strand station"
public string JourneyDetailRef { get; set; } // e.g. "1|39437|0|1|15072025"
public List<string> Notes { get; set; } // e.g. "Pendeltåg", "Endast 2 klass"
}