15 lines
354 B
C#
15 lines
354 B
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
namespace Microsoft.AspNet.Razor.Test.Generator
|
|
{
|
|
[Flags]
|
|
public enum TabTest
|
|
{
|
|
NoTabs = 1,
|
|
Tabs = 2,
|
|
Both = 3
|
|
}
|
|
}
|