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/IModModel.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Dewdrop/Models/IModModel.cs (limited to 'Dewdrop/Models/IModModel.cs') diff --git a/Dewdrop/Models/IModModel.cs b/Dewdrop/Models/IModModel.cs new file mode 100644 index 00000000..aa6583d4 --- /dev/null +++ b/Dewdrop/Models/IModModel.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Dewdrop.Models +{ + interface IModModel + { + /// + /// Basic information in the form of + /// + /// + ModGenericModel ModInfo(); + } +} -- cgit