Files
TechHelper/TechHelper.Server/Services/IQuestionGroupService.cs
2025-06-13 19:01:32 +08:00

10 lines
180 B
C#

using Entities.Contracts;
using TechHelper.Services;
namespace TechHelper.Server.Services
{
public interface IQuestionGroupService : IBaseService<QuestionGroup, Guid>
{
}
}