Skip to content

Commit

Permalink
Germany - Add Uprising of June 17 1953 (#724)
Browse files Browse the repository at this point in the history
75th anniversary of the uprising of June 17, 1953
  • Loading branch information
tinohager authored Nov 28, 2024
1 parent dafae8e commit 967c2be
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/Nager.Date/HolidayProviders/GermanyHolidayProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -297,12 +297,30 @@ private HolidaySpecification ReformationDay(int year)
return null;
}

private HolidaySpecification? UprisingOfJune171953(int year)
{
if (year == 2028)
{
return new HolidaySpecification
{
Date = new DateTime(year, 5, 8),
EnglishName = "75th anniversary of the uprising of June 17, 1953",
LocalName = "75. Jahrestag des Aufstandes vom 17. Juni 1953",
HolidayTypes = HolidayTypes.Public,
SubdivisionCodes = ["DE-BE"]
};
}

return null;
}

/// <inheritdoc/>
public override IEnumerable<string> GetSources()
{
return
[
"https://de.wikipedia.org/wiki/Gesetzliche_Feiertage_in_Deutschland",
"https://pardok.parlament-berlin.de/starweb/adis/citat/VT/19/gvbl/g24280460.pdf"
];
}
}
Expand Down

0 comments on commit 967c2be

Please sign in to comment.