Files
mixtape/old/zero.Web/Models/TranslationListModel.cs
T
2021-11-19 16:11:12 +01:00

14 lines
232 B
C#

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; }
}
}