7 lines
113 B
C#
7 lines
113 B
C#
namespace ReportGenerator.Generator.Interface;
|
|
|
|
public interface IStringSerializable
|
|
{
|
|
string ToString();
|
|
}
|