2024-05-25 19:12:30 +02:00
|
|
|
|
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;
|
2024-10-25 15:51:42 +02:00
|
|
|
|
public string CostumeNameEN { get; init; } = string.Empty;
|
|
|
|
|
public string CostumeNameCN { get; init; } = string.Empty;
|
|
|
|
|
public string CostumeNameKO { get; init; } = string.Empty;
|
2024-05-25 19:12:30 +02:00
|
|
|
|
}
|