summaryrefslogtreecommitdiffstats
path: root/generator/plugins/dotnet/custom/Proposed.cs
blob: eb0ed75204d05bb06784da7522ce5a7a6ec06827 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Enum)]
public class ProposedAttribute : Attribute
{
    public ProposedAttribute()
    {
        Version = null;
    }

    public ProposedAttribute(string version)
    {
        Version = version;
    }

    public string? Version { get; }
}