Structures fields and properties in Swift

struct ColorPoint {
    //In Java there are no fields
    var x, y: Int
    
    //Property
    var Color: Brush
}