Files
parr_api/PARR.DAL/Services/Interfaces/V1/V1_IJobStatusService.cs

10 lines
202 B
C#
Raw Normal View History

2023-08-23 15:47:20 +10:00
using PARR.DAL.Models.V1;
using PARR.DAL.Services.Interfaces.Base;
namespace PARR.DAL.Services.Interfaces.V1
{
internal interface V1_IJobStatusService : IBaseService<V1_JobStatus>
{
}
}