diff options
| author | James Stine <leon.blade@gmail.com> | 2017-08-13 17:44:00 -0400 |
|---|---|---|
| committer | James Stine <leon.blade@gmail.com> | 2017-08-13 17:44:00 -0400 |
| commit | 06ed54b2c6c2e1f49d6975a34ea36f685d7f7c49 (patch) | |
| tree | fea1bb6a927ca84009657430134cea8a2028cc09 /Dewdrop/Models/IModModel.cs | |
| download | SMAPI-06ed54b2c6c2e1f49d6975a34ea36f685d7f7c49.tar.gz SMAPI-06ed54b2c6c2e1f49d6975a34ea36f685d7f7c49.tar.bz2 SMAPI-06ed54b2c6c2e1f49d6975a34ea36f685d7f7c49.zip | |
First commit.
Diffstat (limited to 'Dewdrop/Models/IModModel.cs')
| -rw-r--r-- | Dewdrop/Models/IModModel.cs | 16 |
1 files changed, 16 insertions, 0 deletions
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 + { + /// <summary> + /// Basic information in the form of <see cref="ModGenericModel"/> + /// </summary> + /// <returns><see cref="ModGenericModel"/></returns> + ModGenericModel ModInfo(); + } +} |
