123456789101112131415161718192021222324252627282930313233 |
- // ReSharper disable InconsistentNaming
- namespace TDMS.Common
- {
- internal static class Constants
- {
- // File type constants
- public const string DDC_FILE_TYPE_TDM = "TDM";
- public const string DDC_FILE_TYPE_TDM_STREAMING = "TDMS";
- // File property constants
- public const string DDC_FILE_NAME = DDC_LEVEL_NAME; // Name
- public const string DDC_FILE_DESCRIPTION = DDC_LEVEL_DESCRIPTION; // Description
- public const string DDC_FILE_TITLE = "title"; // Title
- public const string DDC_FILE_AUTHOR = "author"; // Author
- public const string DDC_FILE_DATETIME = "datetime"; // Date/Time
- // ChannelGroup property constants
- public const string DDC_CHANNEL_GROUP_NAME = DDC_LEVEL_NAME; // Name
- public const string DDC_CHANNEL_GROUP_DESCRIPTION = DDC_LEVEL_DESCRIPTION; // Description
- // Channel property constants
- public const string DDC_CHANNEL_NAME = DDC_LEVEL_NAME; // Name
- public const string DDC_CHANNEL_DESCRIPTION = DDC_LEVEL_DESCRIPTION; // Description
- public const string DDC_CHANNEL_UNIT_STRING = "unit_string"; // Unit String
- public const string DDC_CHANNEL_MINIMUM = "minimum"; // Minimum
- public const string DDC_CHANNEL_MAXIMUM = "maximum"; // Maximum
- // Default level property name
- public const string DDC_LEVEL_NAME = "name"; // Name
- public const string DDC_LEVEL_DESCRIPTION = "description"; // Description
- }
- }
|