GatheringMonthlyParams

@Serializable
data class GatheringMonthlyParams(val year: Int, val month: Int, val lat: Double? = null, val lng: Double? = null)

聚会月历参数。

Parameters

year

年份

month

月份

lat

纬度(可选,用于计算距离)

lng

经度(可选,用于计算距离)

Constructors

Link copied to clipboard
constructor(year: Int, month: Int, lat: Double? = null, lng: Double? = null)

Properties

Link copied to clipboard
val lat: Double?
Link copied to clipboard
val lng: Double?
Link copied to clipboard
val month: Int
Link copied to clipboard
val year: Int