14 lines
263 B
C#
14 lines
263 B
C#
|
|
using Umbraco.Core.Models.EntityBase;
|
|||
|
|
|
|||
|
|
namespace Umbraco.Core.Models
|
|||
|
|
{
|
|||
|
|
internal sealed class Folder : Entity
|
|||
|
|
{
|
|||
|
|
public Folder(string folderPath)
|
|||
|
|
{
|
|||
|
|
Path = folderPath;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public string Path { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|