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