using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace AMESCoreStudio.Web.ViewComponent
{
    [Microsoft.AspNetCore.Mvc.ViewComponent]
    public class SOP_FileViewComponent : Microsoft.AspNetCore.Mvc.ViewComponent
    {
        public string Invoke()
        {
            return $"測試天氣";
        }
    }
}