Ez most félig kész ...

This commit is contained in:
2025-03-03 13:24:23 +01:00
parent dca4f3ba73
commit 499daa0e17
12 changed files with 1803 additions and 67 deletions
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WorkFlowCheck.Common.DTO;
namespace WorkFlowCheck.MAUI.Services.Interfaces
{
public interface ICheckListService
{
Task<CheckListHeaderDTO> StartNew();
}
}