12 lines
245 B
C#
12 lines
245 B
C#
using CatherineLynwood.Models;
|
|
|
|
using System.Net;
|
|
|
|
namespace CatherineLynwood.Services
|
|
{
|
|
public interface IGeoResolver
|
|
{
|
|
Task<GeoIpResult?> ResolveAsync(IPAddress ip, string userAgent, CancellationToken ct = default);
|
|
}
|
|
}
|