KIT!
9bb08e2892
Costume name will now be selected from the right language in the wordlist. In nijiiro, costume entries for all languages are in japanese, but that gives you the option to translate the fields manually in the wordlist and have it reflected on the webUI.
13 lines
417 B
C#
13 lines
417 B
C#
namespace SharedProject.Models;
|
|
|
|
public class Costume
|
|
{
|
|
public uint CostumeId { get; set; }
|
|
|
|
public string CostumeType { get; init; } = string.Empty;
|
|
|
|
public string CostumeName { get; init; } = string.Empty;
|
|
public string CostumeNameEN { get; init; } = string.Empty;
|
|
public string CostumeNameCN { get; init; } = string.Empty;
|
|
public string CostumeNameKO { get; init; } = string.Empty;
|
|
} |