aspnetcore/test/Microsoft.AspNet.Razor.Runt.../EnumPropertyAttribute.cs

13 lines
358 B
C#

// Copyright (c) .NET Foundation. 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.Runtime.Precompilation
{
public class EnumPropertyAttribute : Attribute
{
public DayOfWeek DayOfWeek { get; set; }
}
}