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