namespace Core.Services;
public class OpenZoneService
{
///
/// Add open zone to specified map
///
/// map location (e.g. factory4_day)
/// zone to add
public void AddZoneToMap(string locationId, string zoneToAdd)
{
throw new NotImplementedException();
}
///
/// Add open zones to all maps found in config/location.json to db
///
public void ApplyZoneChangesToAllMaps()
{
throw new NotImplementedException();
}
}