10 lines
213 B
C#
10 lines
213 B
C#
using QRRapidoApp.Models.Ads;
|
|
|
|
namespace QRRapidoApp.Services.Ads
|
|
{
|
|
public interface IAdSlotConfigurationProvider
|
|
{
|
|
AdSlotConfiguration GetSlot(string slotKey, string? cultureName = null);
|
|
}
|
|
}
|