Files
TechHelper/TechHelper.Server/Services/IAssignmentGroupService.cs
2025-06-20 15:37:39 +08:00

10 lines
185 B
C#

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