Renamed Umbraco.Abstractions to Umbraco.Core

This commit is contained in:
Bjarke Berg
2020-02-24 08:21:53 +01:00
parent 46f00cf960
commit 90c2381c86
1117 changed files with 30 additions and 30 deletions

View File

@@ -0,0 +1,23 @@
using System.Runtime.Serialization;
namespace Umbraco.Web.Models.ContentEditing
{
/// <summary>
/// The dictionary translation overview display.
/// </summary>
[DataContract(Name = "dictionaryTranslation", Namespace = "")]
public class DictionaryOverviewTranslationDisplay
{
/// <summary>
/// Gets or sets the display name.
/// </summary>
[DataMember(Name = "displayName")]
public string DisplayName { get; set; }
/// <summary>
/// Gets or sets a value indicating whether has translation.
/// </summary>
[DataMember(Name = "hasTranslation")]
public bool HasTranslation { get; set; }
}
}