Closed capricorn05 closed 8 months ago
class ConverterEnum { public const MINUTES_IN_HOUR = 60; public const MINUTES_IN_DAY = 60 60; public const MINUTES_IN_WEEK = 168 60; public const HOURS_IN_DAY = 24; public const HOURS_IN_WEEK = 168; }
Indeed it's a typo, but when converting back, it uses the same constant, so it doesn't create any problems.
class ConverterEnum { public const MINUTES_IN_HOUR = 60; public const MINUTES_IN_DAY = 60 60; public const MINUTES_IN_WEEK = 168 60; public const HOURS_IN_DAY = 24; public const HOURS_IN_WEEK = 168; }