flower-story/Server/Data/Model/ILocation.cs

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; }
}