You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicfinalclassSetTypeDto
{
booleana;
booleanb;
booleanc;
publicbooleana()
{
returna;
}
SetTypeDtoa(booleanvalue) // Should be public
{
a = value;
returnthis;
}
publicbooleanb()
{
returnb;
}
SetTypeDtob(booleanvalue) // Should be public
{
b = value;
returnthis;
}
// ...
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
This is related to #1012 but for set fields.
When you specify a
set
field type (see example below), the Dto generated has private setter scope.Expected behaviour is
public
settersProduces a Dto type with private setters.
The text was updated successfully, but these errors were encountered: