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

10 lines
126 B
C#

using IM_API.Dtos;
namespace IM_API.Interface.Services
{
public interface IDemo
{
TestDto Test();
}
}