add some xml comments to prevent IO exception

might fix Swagger. referencing #131
This commit is contained in:
Collin M. Barrett 2017-10-24 05:54:53 -05:00
parent de47820277
commit fc9dcf61f3

View file

@ -16,6 +16,10 @@ public ListsController(IListService listService)
this.listService = listService;
}
/// <summary>
/// Get Lists
/// </summary>
/// <returns>All FilterLists</returns>
[HttpGet]
public IActionResult Get()
{