1011 B
1011 B
source_files, generated_at, model, schema_version, sha256
| source_files | generated_at | model | schema_version | sha256 | |
|---|---|---|---|---|---|
|
2026-04-17T16:38:27.969703+00:00 | zai-org/GLM-5-FP8 | 1 | 3c822eef83b93a70 |
Documentation: VersionAttribute.cs
1. Purpose
This module defines a custom attribute named VersionAttribute within the DTS.Common.Attributes namespace. It allows developers to annotate classes, methods, or other code elements with an immutable integer version number, facilitating metadata-driven version tracking within the system.
2. Public Interface
-
public class VersionAttribute : Attribute- The primary class definition inheriting from
System.Attribute.
- The primary class definition inheriting from
-
public VersionAttribute(int version)- Signature: Constructor accepting an integer.
- Behavior: Initializes a new instance of the attribute and sets the
Versionproperty to the provided integer value.
-
public int Version { get; private set; }- Type:
int
- Type: