IM/backend/IM_API/Services/Demo.cs
2025-10-18 14:53:04 +08:00

14 lines
227 B
C#

using IM_API.Dtos;
using IM_API.Interface.Services;
namespace IM_API.Services
{
public class Demo : IDemo
{
public TestDto Test()
{
throw new NotImplementedException();
}
}
}