Files
mixtape/zero.Web/Models/TranslationEditModel.cs
T
2020-05-04 16:00:39 +02:00

16 lines
292 B
C#

using System;
using System.Collections.Generic;
using zero.Core.Entities;
namespace zero.Web.Models
{
public class TranslationEditModel : EditModel
{
public string Key { get; set; }
public string Value { get; set; }
public TranslationDisplay Display { get; set; }
}
}