Datei: NDO.Mapping/NDO.Mapping/ILoadStateSupport.cs
Last Commit (1814d4b)
| 1 | -- File didn't exist -- |
New Commit (182cfd7)
| 1 | using System; |
| 2 | using System.Collections.Generic; |
| 3 | using System.Text; |
| 4 | |
| 5 | namespace NDO.Mapping |
| 6 | { |
| 7 | ····/// <summary> |
| 8 | ····/// Interface used by the NDO framework and JSONFormatter. Do not use this interface in user code. |
| 9 | ····/// </summary> |
| 10 | ····public interface ILoadStateSupport |
| 11 | ····{ |
| 12 | ········/// <summary> |
| 13 | ········/// Gets the ordinal of an initialized mapping object. |
| 14 | ········/// </summary> |
| 15 | ········int Ordinal { get; } |
| 16 | ····} |
| 17 | } |
| 18 |