Files
raven/server/AyaNova/models/LocaleItem.cs
2018-06-28 23:41:48 +00:00

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