Files
flower-story/Server/Data/Model/ILocation.cs
2023-07-05 17:33:22 +08:00

18 lines
303 B
C#

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