diff options
Diffstat (limited to 'Dewdrop/Models/ModGenericModel.cs')
-rw-r--r-- | Dewdrop/Models/ModGenericModel.cs | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Dewdrop/Models/ModGenericModel.cs b/Dewdrop/Models/ModGenericModel.cs new file mode 100644 index 00000000..829c396a --- /dev/null +++ b/Dewdrop/Models/ModGenericModel.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Dewdrop.Models +{ + public class ModGenericModel + { + /// <summary> + /// An identifier for the mod. + /// </summary> + public int Id { get; set; } + + /// <summary> + /// The mod's name. + /// </summary> + public string Name { get; set; } + + /// <summary> + /// The vendor identifier for the mod. + /// </summary> + public string Vendor { get; set; } + + /// <summary> + /// The mod's version number. + /// </summary> + public string Version { get; set; } + + /// <summary> + /// The mod's URL + /// </summary> + public string Url { get; set; } + + /// <summary> + /// Is the mod a valid mod. + /// </summary> + public bool Valid { get; set; } = true; + } +} |