app-cloudep-tweeting-service/internal/domain/const.go

14 lines
155 B
Go
Raw Normal View History

2024-08-29 09:33:57 +00:00
package domain
type AdType int32
func (a AdType) ToInt32() int32 {
return int32(a)
}
const (
AdTypeAll AdType = iota
AdTypeOnlyAd
AdTypeOnlyNotAd
)