23 lines
552 B
C#
23 lines
552 B
C#
using System;
|
|
using System.Configuration;
|
|
|
|
namespace Umbraco.Core.Configuration.UmbracoSettings
|
|
{
|
|
internal class RepositoryElement : ConfigurationElement
|
|
{
|
|
[ConfigurationProperty("name")]
|
|
internal string Name
|
|
{
|
|
get { return (string)base["name"]; }
|
|
set { base["name"] = value; }
|
|
}
|
|
|
|
[ConfigurationProperty("guid")]
|
|
internal Guid Id
|
|
{
|
|
get { return (Guid)base["guid"]; }
|
|
set { base["guid"] = value; }
|
|
}
|
|
|
|
}
|
|
} |