How to create empty class in F#

Viewed 3193

I know this is stupid question. I can create an empty class like the following in c#.

class Customer{}

But How can I do this in F#? This is my try

type Customer() =

   let _ = ()

What is the correct way?

3 Answers
Related