define WeatherCondition

This commit is contained in:
2025-12-04 22:52:59 +09:00
parent 38ebb7c40e
commit 7d37200b90

View File

@@ -0,0 +1,12 @@
package domain
type WeatherCondition string
const (
WeatherConditionUnknown WeatherCondition = "UNKNOWN"
WeatherConditionClear WeatherCondition = "CLEAR"
WeatherConditionCloudy WeatherCondition = "CLOUDY"
WeatherConditionRain WeatherCondition = "RAIN"
WeatherConditionSnow WeatherCondition = "SNOW"
WeatherConditionRainSnow WeatherCondition = "RAIN_SNOW"
)