diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-09-21 23:35:18 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-09-21 23:35:18 -0400 |
commit | 9791de306c22c744732219dadfd97b7dd556a5b2 (patch) | |
tree | f320674827f3535cf238106070fefd5a762a2a0f /Dewdrop/Models/IModModel.cs | |
parent | 57d9d28554de79734401a68ee1151fc4e9e0ca83 (diff) | |
download | SMAPI-9791de306c22c744732219dadfd97b7dd556a5b2.tar.gz SMAPI-9791de306c22c744732219dadfd97b7dd556a5b2.tar.bz2 SMAPI-9791de306c22c744732219dadfd97b7dd556a5b2.zip |
minor cleanup, formatting, documentation (#336)
Diffstat (limited to 'Dewdrop/Models/IModModel.cs')
-rw-r--r-- | Dewdrop/Models/IModModel.cs | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/Dewdrop/Models/IModModel.cs b/Dewdrop/Models/IModModel.cs index aa6583d4..f1b09f8a 100644 --- a/Dewdrop/Models/IModModel.cs +++ b/Dewdrop/Models/IModModel.cs @@ -1,16 +1,12 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace Dewdrop.Models +namespace Dewdrop.Models { - interface IModModel + /// <summary>A mod metadata response which provides a method to extract generic info.</summary> + internal interface IModModel { - /// <summary> - /// Basic information in the form of <see cref="ModGenericModel"/> - /// </summary> - /// <returns><see cref="ModGenericModel"/></returns> + /********* + ** Public methods + *********/ + /// <summary>Get basic mod metadata.</summary> ModGenericModel ModInfo(); } } |