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