5
I noticed that it is possible to sign a property access mode as private:
public string Codigo { get; private set; }
Or just ignore it:
public string Codigo { get; }
Is there any difference or scenario where one of these signatures should be used?