Files
learngo/x-tba/3-functions/xxx-project-pricings/property.go
2019-04-23 00:32:42 +03:00

15 lines
336 B
Go

// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
// property stores data about a property
type property struct {
location string
size, beds, baths, price int
}