mutannot/Example/MutationCaseAttribute.fs

9 lines
195 B
FSharp

namespace Mutannot
open System
[<AttributeUsage(AttributeTargets.Method, AllowMultiple = true)>]
type MutationCaseAttribute(patch: string) =
inherit Attribute()
member _.Patch = patch