12 lines
324 B
C#
12 lines
324 B
C#
using System;
|
|
|
|
namespace FullSerializer {
|
|
/// <summary>
|
|
/// Interface that AOT generated converters extend. Used to check to see if
|
|
/// the AOT converter is up to date.
|
|
/// </summary>
|
|
public interface fsIAotConverter {
|
|
Type ModelType { get; }
|
|
fsAotVersionInfo VersionInfo { get; }
|
|
}
|
|
} |