first commit
This commit is contained in:
10
CommonAssemblyAttributes.cs
Normal file
10
CommonAssemblyAttributes.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
|
||||
[AttributeUsage(AttributeTargets.Assembly)]
|
||||
public class AssemblyMinClientVersion : Attribute
|
||||
{
|
||||
public string minClientVersion;
|
||||
|
||||
public AssemblyMinClientVersion() : this(string.Empty) { }
|
||||
public AssemblyMinClientVersion(string txt) { minClientVersion = txt; }
|
||||
}
|
||||
Reference in New Issue
Block a user