This repository has been archived on 2024-06-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
thesis-src/Examples/ReportGenerator/Generator/Interface/IStringSerializable.cs
T
2023-11-22 15:23:23 +01:00

7 lines
113 B
C#

namespace ReportGenerator.Generator.Interface;
public interface IStringSerializable
{
string ToString();
}