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

14 lines
232 B
C#
Raw Normal View History

2020-05-04 14:13:03 +02:00
using System;
namespace zero.Web.Models
{
public class TranslationListModel : ListModel
{
public string Key { get; set; }
public string Value { get; set; }
public DateTimeOffset CreatedDate { get; set; }
}
}