1+ using CsvHelper . Configuration . Attributes ;
2+
3+ namespace SMB3Explorer . Models . Exports ;
4+
5+ public class PitchingMostRecentSeasonStatistic : PitchingSeasonStatistic
6+ {
7+ public PitchingMostRecentSeasonStatistic ( PitchingSeasonStatistic pitchingSeasonStatistic )
8+ {
9+ PlayerId = pitchingSeasonStatistic . PlayerId ;
10+ FirstName = pitchingSeasonStatistic . FirstName ;
11+ LastName = pitchingSeasonStatistic . LastName ;
12+ CurrentTeam = pitchingSeasonStatistic . CurrentTeam ;
13+ PreviousTeam = pitchingSeasonStatistic . PreviousTeam ;
14+ PositionNumber = pitchingSeasonStatistic . PositionNumber ;
15+ PitcherRole = pitchingSeasonStatistic . PitcherRole ;
16+ GamesPlayed = pitchingSeasonStatistic . GamesPlayed ;
17+ GamesStarted = pitchingSeasonStatistic . GamesStarted ;
18+ Wins = pitchingSeasonStatistic . Wins ;
19+ Losses = pitchingSeasonStatistic . Losses ;
20+ CompleteGames = pitchingSeasonStatistic . CompleteGames ;
21+ Shutouts = pitchingSeasonStatistic . Shutouts ;
22+ TotalPitches = pitchingSeasonStatistic . TotalPitches ;
23+ Saves = pitchingSeasonStatistic . Saves ;
24+ OutsPitched = pitchingSeasonStatistic . OutsPitched ;
25+ HitsAllowed = pitchingSeasonStatistic . HitsAllowed ;
26+ EarnedRuns = pitchingSeasonStatistic . EarnedRuns ;
27+ HomeRunsAllowed = pitchingSeasonStatistic . HomeRunsAllowed ;
28+ WalksAllowed = pitchingSeasonStatistic . WalksAllowed ;
29+ Strikeouts = pitchingSeasonStatistic . Strikeouts ;
30+ HitByPitch = pitchingSeasonStatistic . HitByPitch ;
31+ BattersFaced = pitchingSeasonStatistic . BattersFaced ;
32+ GamesFinished = pitchingSeasonStatistic . GamesFinished ;
33+ RunsAllowed = pitchingSeasonStatistic . RunsAllowed ;
34+ WildPitches = pitchingSeasonStatistic . WildPitches ;
35+ CompletionDate = pitchingSeasonStatistic . CompletionDate ;
36+ SeasonId = pitchingSeasonStatistic . SeasonId ;
37+ SeasonNum = pitchingSeasonStatistic . SeasonNum ;
38+ Age = pitchingSeasonStatistic . Age ;
39+ }
40+
41+
42+ [ Name ( "ERA-" ) , Index ( 47 ) ]
43+ public double EarnedRunsAllowedMinus { get ; set ; }
44+ }
0 commit comments