using AyCode.Interfaces.Entities;
namespace AyCode.Interfaces.Locations;
public interface ILocationBase : IEntityGuid
{
double Longitude { get; }
double Latitude { get; }
string? Address { get; }
}