Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
RequiresPreviewFeaturesAttribute.cs
Go to the documentation of this file.
2
3[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Module | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Interface | AttributeTargets.Delegate, Inherited = false)]
5{
6 public string? Message { get; }
7
8 public string? Url { get; set; }
9
13
14 public RequiresPreviewFeaturesAttribute(string? message)
15 {
16 Message = message;
17 }
18}