AyCode.Core/AyCode.Interfaces/Locations/ILocationBase.cs

11 lines
215 B
C#

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