Migrated DomainsApiController
Moved action to exiting ContentController, moved viewmodels out into seperate files.
This commit is contained in:
16
src/Umbraco.Web/Models/ContentEditing/DomainDisplay.cs
Normal file
16
src/Umbraco.Web/Models/ContentEditing/DomainDisplay.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Umbraco.Web.Models.ContentEditing
|
||||
{
|
||||
public class DomainDisplay
|
||||
{
|
||||
public DomainDisplay(string name, int lang)
|
||||
{
|
||||
Name = name;
|
||||
Lang = lang;
|
||||
}
|
||||
|
||||
public string Name { get; }
|
||||
public int Lang { get; }
|
||||
public bool Duplicate { get; set; }
|
||||
public string Other { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user