29 lines
617 B
C#
29 lines
617 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using AyaNova.Biz;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
namespace AyaNova.Models
|
|
{
|
|
|
|
public partial class TranslationItem
|
|
{
|
|
public long Id { get; set; }
|
|
public uint ConcurrencyToken { get; set; }
|
|
|
|
[Required]
|
|
public string Key { get; set; }
|
|
[Required]
|
|
public string Display { get; set; }
|
|
|
|
public long TranslationId { get; set; }
|
|
|
|
//Relation
|
|
[JsonIgnore]
|
|
public Translation Translation { get; set; }
|
|
}
|
|
}
|