mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-30 15:06:06 +00:00
13 lines
354 B
C#
13 lines
354 B
C#
namespace AideDeJeuLib
|
|
{
|
|
public class Item
|
|
{
|
|
public string Id { get; set; }
|
|
public string IdVO { get; set; }
|
|
public string IdVF { get; set; }
|
|
public string Name { get; set; }
|
|
public string NameVO { get; set; }
|
|
public string NamePHB { get; set; }
|
|
public string Html { get; set; }
|
|
}
|
|
}
|