You've already forked linux-packaging-mono
17 lines
544 B
C#
17 lines
544 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
|
|
namespace Microsoft.Web.Http.Data
|
|
{
|
|
/// <summary>
|
|
/// Attribute applied to a <see cref="DataController"/> method to indicate that it is a delete method.
|
|
/// </summary>
|
|
[AttributeUsage(
|
|
AttributeTargets.Field | AttributeTargets.Method | AttributeTargets.Property,
|
|
AllowMultiple = false, Inherited = true)]
|
|
public sealed class DeleteAttribute : Attribute
|
|
{
|
|
}
|
|
}
|