Started UI Rework for target game setup, started adding a Game master record and a CSV Loader service

This commit is contained in:
2024-09-15 22:10:44 +02:00
parent c339ca5d3f
commit 227d8a11d7
8 changed files with 84 additions and 36 deletions

View File

@ -0,0 +1,20 @@
using System;
using CsvHelper.Configuration;
using CsvHelper;
using Splat;
namespace StarsAssistant.Services;
public class CSVDataLoader
{
/// <summary>
/// Reference to the game metadata, retrieved by DI
/// </summary>
protected Model.Game game;
public CSVDataLoader()
{
game = Locator.Current.GetService<Model.Game>()!;
}
}