forked from AcaMate/AcaMate_API
1. 컨트롤러, 서비스(인터페이스), 레포지토리(인터페이스) 추가 2. scoped 등록 3. 클래스 관련 모델 등록 4. ClassInfo API 등록
8 lines
194 B
C#
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);
|
|
} |