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.
22 lines
540 B
22 lines
540 B
4 years ago
|
|
||
|
|
||
|
namespace CK.SCP.Models.ScpEntity
|
||
|
{
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
public partial class TA_LANGUAGE
|
||
|
{
|
||
|
public int UID { get; set; }
|
||
|
public string GUID { get; set; }
|
||
|
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; }
|
||
|
}
|
||
|
}
|