зеркало из https://github.com/stride3d/QuickGraph.git
12 строки
231 B
C#
12 строки
231 B
C#
|
using System;
|
||
|
using System.Xml;
|
||
|
|
||
|
namespace QuickGraph.Serialization
|
||
|
{
|
||
|
public abstract class SerializerBase<TVertex,TEdge>
|
||
|
where TEdge :IEdge<TVertex>
|
||
|
{
|
||
|
public bool EmitDocumentDeclaration {get;set;}
|
||
|
}
|
||
|
}
|