Badgerati/Edison

View on GitHub
Edison.Framework/Attributes/Version.cs

Summary

Maintainability
A
55 mins
Test Coverage
/*
Edison is designed to be simpler and more performant unit/integration testing framework.

Copyright (c) 2015, Matthew Kelly (Badgerati)
Company: Cadaeic Studios
License: MIT (see LICENSE for details)
 */

using System;

namespace Edison.Framework
{
    [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, AllowMultiple = false)]
    public class VersionAttribute : Attribute
    {
        public readonly string Value;

        public VersionAttribute(string version)
        {
            if (string.IsNullOrWhiteSpace(version))
            {
                throw new ArgumentException("Version cannot be null or empty.");
            }

            Value = version;
        }
    }
}