using System;
namespace Umbraco.Core.IO
{
///
/// Decorates a filesystem.
///
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
public class FileSystemAttribute : Attribute
{
///
/// Initializes a new instance of the class.
///
///
public FileSystemAttribute(string alias)
{
Alias = alias;
}
///
/// Gets the alias of the filesystem.
///
public string Alias { get; }
}
}