src/Sirh3e.Rust/Attributes/Docs.cs

Summary

Maintainability
A
1 hr
Test Coverage
namespace Sirh3e.Rust.Attributes;

[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Interface | AttributeTargets.Struct)]
internal class Docs : Attribute
{
    public readonly string Url;

    public Docs(string url)
    {
        Url = url ?? throw new ArgumentNullException(nameof(url));
    }
}