15 lines
260 B
C#
15 lines
260 B
C#
using System;
|
|
using Umbraco.Core.Models.Entities;
|
|
|
|
namespace Umbraco.Core.Models
|
|
{
|
|
public interface IKeyValue : IEntity
|
|
{
|
|
string Identifier { get; set; }
|
|
|
|
string Value { get; set; }
|
|
|
|
DateTime UpdateDate { get; set; }
|
|
}
|
|
}
|