File: fx\src\data\System\Data\SchemaType.cs | |
Project: ndp\System.Data.csproj (System.Data) |
//------------------------------------------------------------------------------ // <copyright file="SchemaType.cs" company="Microsoft"> // Copyright (c) Microsoft Corporation. All rights reserved. // </copyright> // <owner current="true" primary="true">markash</owner> // <owner current="true" primary="false">laled</owner> //------------------------------------------------------------------------------ namespace System.Data { public enum SchemaType { Source = 1, Mapped = 2 } } |