Files
FATrace/FATrace.WPLApp/Services/IMapperProvider.cs
2025-10-29 11:42:58 +08:00

15 lines
254 B
C#

using AutoMapper;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FATrace.WPLApp.Services
{
public interface IMapperProvider
{
IMapper GetMapper();
}
}