From 06ed54b2c6c2e1f49d6975a34ea36f685d7f7c49 Mon Sep 17 00:00:00 2001 From: James Stine Date: Sun, 13 Aug 2017 17:44:00 -0400 Subject: First commit. --- Dewdrop/Models/ModGenericModel.cs | 40 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 Dewdrop/Models/ModGenericModel.cs (limited to 'Dewdrop/Models/ModGenericModel.cs') 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 + { + /// + /// An identifier for the mod. + /// + public int Id { get; set; } + + /// + /// The mod's name. + /// + public string Name { get; set; } + + /// + /// The vendor identifier for the mod. + /// + public string Vendor { get; set; } + + /// + /// The mod's version number. + /// + public string Version { get; set; } + + /// + /// The mod's URL + /// + public string Url { get; set; } + + /// + /// Is the mod a valid mod. + /// + public bool Valid { get; set; } = true; + } +} -- cgit