Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Firewolf1337 committed May 3, 2024
2 parents 04e7549 + b7bde07 commit 7750b60
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
5 changes: 5 additions & 0 deletions RCRPlanner/App.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,11 @@
<Setter Property="VerticalAlignment" Value="Center"/>

</Style>
<Style x:Key="DefaultLinkStyle" TargetType="Hyperlink">
<Setter Property="Foreground" Value="White"/>
<Setter Property="FontFamily" Value="pack://application:,,,/Fonts/#Montserrat-Regular" />
<Setter Property="Background" Value="Transparent" />
</Style>
<Style TargetType="{x:Type CheckBox}">
<Setter Property="Background" Value="{StaticResource BrushBlack}" />
<Setter Property="BorderBrush" Value="{StaticResource BrushDarkGray}"/>
Expand Down
1 change: 1 addition & 0 deletions RCRPlanner/RCRPlanner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@
<Compile Include="jpegResizing.cs" />
<Compile Include="oddCarImages.cs" />
<Compile Include="participationCredits.cs" />
<Compile Include="partner.cs" />
<Compile Include="pngResizing.cs" />
<Compile Include="ProcessWatcher.cs" />
<Compile Include="searchSerieResults.cs" />
Expand Down
16 changes: 16 additions & 0 deletions RCRPlanner/partner.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace RCRPlanner
{
internal class partner
{
public string type { get; set; }
public string name { get; set; }
public string url { get; set; }
public string picture { get; set; }
}
}

0 comments on commit 7750b60

Please sign in to comment.