| | | 1 | | namespace EHonda.KicktippAi.Core; |
| | | 2 | | |
| | | 3 | | /// <summary> |
| | | 4 | | /// Represents a head-to-head match result with detailed breakdown for CSV export |
| | | 5 | | /// </summary> |
| | 1 | 6 | | public record HeadToHeadResult( |
| | 1 | 7 | | string League, // e.g., "1.BL 2024/25", "DFB 2016/17" |
| | 1 | 8 | | string Matchday, // e.g., "27. Spieltag", "2. Runde" |
| | 1 | 9 | | string PlayedAt, // Date when the match was played (if available) |
| | 1 | 10 | | string HomeTeam, // Home team name |
| | 1 | 11 | | string AwayTeam, // Away team name |
| | 1 | 12 | | string Score, // Final score, e.g., "0:1", "1:3" |
| | 1 | 13 | | string? Annotation = null // e.g., "nach Elfmeterschießen", "nach Verlängerung" |
| | 1 | 14 | | ); |