Skip to content

Commit

Permalink
add MoneyModel description
Browse files Browse the repository at this point in the history
  • Loading branch information
LastSprint committed Nov 16, 2020
1 parent 479e671 commit 3b7f4a4
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ pod 'SurfUtils/$UTIL_NAME$', :git => "https://github.com/surfstudio/iOS-Utils.gi
- [BeanPageControl](#beanPageControl) – page control с перетекающими индикаторами-бобами
- [TouchableControl](#touchablecontrol) – аналог кнопки с кастомизированным анимированием
- [CustomSwitch](#customswitch) – более гибкая реализация Switch ui элемента
- [MoneyModel](#moneymodel) - структура для работы с деньгами

## Утилиты

Expand Down Expand Up @@ -919,6 +920,16 @@ let mailSender = MailSender(
mailSender.send()
```

### MoneyModel

Это структура для работы с деньгами:

```Swift
print(MoneyModel(decimal: 10, digit: 0).asString()) // выведет -- "10"
print(MoneyModel(decimal: 10, digit: 9).asString()) // выведет -- "10.09"
print(MoneyModel(decimal: 10, digit: 99).asString()) // выведет -- "10.99"
```

## Версионирование

В качестве принципа версионирования используется [Семантическое версионирования (Semantic Versioning)](https://semver.org/).
Expand Down

0 comments on commit 3b7f4a4

Please sign in to comment.