2012-08-20 09:42:32 -01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.IO
|
|
|
|
|
|
{
|
2012-11-07 09:30:40 +05:00
|
|
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
|
2012-08-20 09:42:32 -01:00
|
|
|
|
internal class FileSystemProviderAttribute : Attribute
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Alias { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public FileSystemProviderAttribute(string alias)
|
|
|
|
|
|
{
|
|
|
|
|
|
Alias = alias;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|