17 lines
No EOL
303 B
C#
17 lines
No EOL
303 B
C#
namespace FirebaseRestTranslator
|
|
{
|
|
public class ReferenceValue
|
|
{
|
|
private readonly string _value;
|
|
|
|
public ReferenceValue(string value)
|
|
{
|
|
_value = value;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return _value;
|
|
}
|
|
}
|
|
} |