Files
parr_api/PARR.DAL/Services/Interfaces/IJobStatusService.cs

10 lines
196 B
C#
Raw Normal View History

using PARR.DAL.Models.V1;
2023-06-01 16:08:25 +10:00
using PARR.DAL.Services.Interfaces.Base;
namespace PARR.DAL.Services.Interfaces
{
internal interface IJobStatusService : IBaseService<V1_JobStatus>
2023-06-01 16:08:25 +10:00
{
}
}