6 lines
94 B
Go
6 lines
94 B
Go
package models
|
|
|
|
func (m *Post) PayPrice() int64 {
|
|
return m.Price * int64(m.Discount) / 100
|
|
}
|