2020-05-04 14:13:03 +02:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using zero.Core.Entities;
|
|
|
|
|
|
|
|
|
|
namespace zero.Web.Models
|
|
|
|
|
{
|
2020-05-22 15:06:17 +02:00
|
|
|
public class TranslationEditModel : ObsoleteEditModel
|
2020-05-04 14:13:03 +02:00
|
|
|
{
|
|
|
|
|
public string Key { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Value { get; set; }
|
|
|
|
|
|
|
|
|
|
public TranslationDisplay Display { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|