Structures fields and properties in C#

struct ColorPoint {
    //Fields
    public int x, y;

    //Property
    public Brush Color { getset; }
}