You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1015 B
38 lines
1015 B
4 years ago
|
|
||
|
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(200)]
|
||
|
public string CH { get; set; }
|
||
|
[StringLength(200)]
|
||
|
public string EN { get; set; }
|
||
|
[StringLength(200)]
|
||
|
public string RU { get; set; }
|
||
|
[StringLength(200)]
|
||
|
public string DE { get; set; }
|
||
|
[StringLength(200)]
|
||
|
public string FR { get; set; }
|
||
|
[StringLength(200)]
|
||
|
public string EL { get; set; }
|
||
|
[StringLength(200)]
|
||
|
public string AR { get; set; }
|
||
|
[StringLength(200)]
|
||
|
public string JP { get; set; }
|
||
|
|
||
|
public bool IsDeleted { get; set; }
|
||
|
}
|
||
|
|
||
|
}
|