Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SatelliteContractVersionAttribute.cs
Go to the documentation of this file.
1namespace System.Resources;
2
3[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false)]
5{
6 public string Version { get; }
7
8 public SatelliteContractVersionAttribute(string version)
9 {
10 if (version == null)
11 {
12 throw new ArgumentNullException("version");
13 }
14 Version = version;
15 }
16}