This commit is contained in:
59
server/models/Translation.cs
Normal file
59
server/models/Translation.cs
Normal file
@@ -0,0 +1,59 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Sockeye.Models
|
||||
{
|
||||
public class Translation
|
||||
{
|
||||
// public Translation() { }
|
||||
// public Translation(Translation t)
|
||||
// {
|
||||
|
||||
// Id = t.Id;
|
||||
// Concurrency = t.Concurrency;
|
||||
// Name = t.Name;
|
||||
// CjkIndex = t.CjkIndex;
|
||||
// _translationItems = new List<TranslationItem>();
|
||||
// foreach (var titem in t.TranslationItems)
|
||||
// {
|
||||
// _translationItems.Add(new TranslationItem(titem));
|
||||
// }
|
||||
// }
|
||||
|
||||
public long Id { get; set; }
|
||||
public uint Concurrency { get; set; }
|
||||
|
||||
|
||||
[Required]
|
||||
public string Name { get; set; }
|
||||
[Required]
|
||||
public string BaseLanguage { get; set; }
|
||||
public bool? Stock { get; set; }
|
||||
public bool CjkIndex { get; set; }
|
||||
|
||||
|
||||
|
||||
//Relationship
|
||||
//was this but..
|
||||
// public ICollection<TranslationItem> TranslationItems { get; set; }
|
||||
|
||||
//Not perhaps so useful here but this is a good way to lazy initialize collections which
|
||||
//is more efficient when there are many child collections (but when would that ever be desired for Sockeye?)and means no need to null check the collection
|
||||
//https://stackoverflow.com/a/20773057/8939
|
||||
|
||||
private ICollection<TranslationItem> _translationItems;
|
||||
public virtual ICollection<TranslationItem> TranslationItems
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._translationItems ?? (this._translationItems = new HashSet<TranslationItem>());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}//eoc
|
||||
|
||||
}//eons
|
||||
Reference in New Issue
Block a user