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

10 lines
184 B
C#

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