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