Files
mixtape/zero.Web/Models/TranslationEditModel.cs
T

16 lines
300 B
C#
Raw Normal View History

2020-05-04 14:13:03 +02:00
using System;
using System.Collections.Generic;
using zero.Core.Entities;
namespace zero.Web.Models
{
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; }
}
}