1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-30 15:06:06 +00:00

Item => Items

This commit is contained in:
Yan Maniez 2018-09-02 17:08:27 +02:00
parent 50cff9b0ec
commit a232d82ff3
6 changed files with 8 additions and 8 deletions

View file

@ -10,7 +10,7 @@ using Markdig.Syntax;
namespace AideDeJeuLib namespace AideDeJeuLib
{ {
public class Generic : Item public class Generic : Items
{ {
} }
} }

View file

@ -7,7 +7,7 @@ using Markdig.Syntax;
namespace AideDeJeuLib namespace AideDeJeuLib
{ {
public class Equipment : Item public class Equipment : Items
{ {
public string Type { get; set; } public string Type { get; set; }
public string Price { get; set; } public string Price { get; set; }

View file

@ -7,7 +7,7 @@ using Markdig.Syntax;
namespace AideDeJeuLib namespace AideDeJeuLib
{ {
[DataContract] [DataContract]
public class HomeItem : Item public class HomeItem : Items
{ {
[DataMember] [DataMember]
public override string Markdown public override string Markdown

View file

@ -7,7 +7,7 @@ using Markdig.Syntax;
namespace AideDeJeuLib namespace AideDeJeuLib
{ {
public class LinkItem : Item public class LinkItem : Items
{ {
public override string Markdown public override string Markdown
{ {

View file

@ -10,13 +10,13 @@ using System.Xml;
namespace AideDeJeuLib namespace AideDeJeuLib
{ {
public class Monster : Item public class Monster : Items
{ {
public string Type { get; set; } public string Type { get; set; }
public string Size { get; set; } public string Size { get; set; }
public string Alignment { get; set; } public string Alignment { get; set; }
public string Legendary { get; set; } public string Legendary { get; set; }
public string Source { get; set; } //public string Source { get; set; }
public string ArmorClass { get; set; } public string ArmorClass { get; set; }
public string HitPoints { get; set; } public string HitPoints { get; set; }
public string Speed { get; set; } public string Speed { get; set; }

View file

@ -10,7 +10,7 @@ using System.Xml.Serialization;
namespace AideDeJeuLib namespace AideDeJeuLib
{ {
public class Spell : Item public class Spell : Items
{ {
public string Level { get; set; } public string Level { get; set; }
public string Type { get; set; } public string Type { get; set; }
@ -21,7 +21,7 @@ namespace AideDeJeuLib
public string Components { get; set; } public string Components { get; set; }
public string Duration { get; set; } public string Duration { get; set; }
public string DescriptionHtml { get; set; } public string DescriptionHtml { get; set; }
public string Source { get; set; } //public string Source { get; set; }
public string Classes { get; set; } public string Classes { get; set; }
} }
} }