12 lines
256 B
C#
12 lines
256 B
C#
|
|
namespace Umbraco.Tests.Common.Builders.Interfaces
|
||
|
|
{
|
||
|
|
public interface IWithPropertyValues
|
||
|
|
{
|
||
|
|
object PropertyValues { get; set; }
|
||
|
|
|
||
|
|
string PropertyValuesCulture { get; set; }
|
||
|
|
|
||
|
|
string PropertyValuesSegment { get; set; }
|
||
|
|
}
|
||
|
|
}
|