|
|
|
|
|
|
|
namespace CK.SCP.Models.ScpEntity
|
|
|
|
{
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
|
|
|
|
|
public partial class TA_LANGUAGE
|
|
|
|
{
|
|
|
|
[Key]
|
|
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
|
|
public int UID { get; set; }
|
|
|
|
[StringLength(200)]
|
|
|
|
public string GUID { get; set; }
|
|
|
|
[StringLength(2000)]
|
|
|
|
public string CH { get; set; }
|
|
|
|
public string EN { get; set; }
|
|
|
|
public string RU { get; set; }
|
|
|
|
public string DE { get; set; }
|
|
|
|
public string FR { get; set; }
|
|
|
|
public string EL { get; set; }
|
|
|
|
public string AR { get; set; }
|
|
|
|
public string JP { get; set; }
|
|
|
|
public bool IsDeleted { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|