Files
parr_api/PARR.DAL/Services/Interfaces/V1/V1_IApplicationInHostService.cs
2023-08-23 15:47:20 +10:00

10 lines
216 B
C#

using PARR.DAL.Models.V1;
using PARR.DAL.Services.Interfaces.Base;
namespace PARR.DAL.Services.Interfaces.V1
{
public interface V1_IApplicationInHostService : IBaseService<V1_ApplicationInHost>
{
}
}