7 lines
103 B
C#
7 lines
103 B
C#
// Compiler options: -t:library
|
|
|
|
public abstract class Base
|
|
{
|
|
public abstract string Value { get; }
|
|
}
|