If you won't need that class will be used by any third party and you won't need to add overloaded constructor in future, don't write an empty constructor.
But...
Let's assume that you already shipped the product and other third parties has been using your class. After a few months, there is one new requirement comes and you decided to add one constructor with name parameter.
When you add another overloaded constructor in version 2, the C# compiler won't generate the default constructor. If you forgot to add empty constructor explicitly, all other third party code will be break.
IMO, I always define empty constructor (one liner) on the public classes if those will be used by third parties.