11 lines
268 B
C#
11 lines
268 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace SWAD.API.Controllers;
|
|
|
|
public class SwadController : ProblemsController
|
|
{
|
|
public static string GetTitleForSwagger(string controllerName, string description)
|
|
{
|
|
return $"{controllerName}: {description}";
|
|
}
|
|
} |