AcaMate_API/Program/Services/V1/Interfaces/IClassService.cs
SEAN-59 82d8afcfb7 [] Class 관련 로직 추가
1. 컨트롤러, 서비스(인터페이스), 레포지토리(인터페이스) 추가
2. scoped 등록
3. 클래스 관련 모델 등록
4. ClassInfo API 등록
2025-06-20 17:59:03 +09:00

8 lines
194 B
C#

using Back.Program.Common.Model;
namespace Back.Program.Services.V1.Interfaces;
public interface IClassService
{
Task<APIResponseStatus<object>> GetClassInfo(string summary, string cid);
}