add latitude & longitude

This commit is contained in:
2023-07-05 17:33:22 +08:00
parent 4bf330f824
commit 32464cb494
14 changed files with 581 additions and 31 deletions

View File

@ -0,0 +1,17 @@
namespace Blahblah.FlowerStory.Server.Data.Model;
/// <summary>
/// 实体位置接口
/// </summary>
public interface ILocation
{
/// <summary>
/// 纬度
/// </summary>
double? Latitude { get; }
/// <summary>
/// 经度
/// </summary>
double? Longitude { get; }
}