I have a class defined as such:
public class LogEntry
{
public string Number {get; internal set;}
}
On the client side when I consume the class, the Number
property doesn't exist. But if I remove internal
, then the property exists, but for both get and set.
I just want the client to be able to read its value, not setting it.