add latitude & longitude
This commit is contained in:
17
Server/Data/Model/ILocation.cs
Normal file
17
Server/Data/Model/ILocation.cs
Normal 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; }
|
||||
}
|
Reference in New Issue
Block a user