Files
Web_AUTS_Server_Prod/AUTS_Server/Service/IUserOperationLog.cs

8 lines
158 B
C#
Raw Normal View History

2025-11-20 11:03:29 +08:00
namespace AUTS_Server.Service
{
public interface IUserOperationLog
{
void UserLog(string Openration, string Device, string name);
}
}