ISyncService bővítése

This commit is contained in:
2025-02-27 12:47:58 +01:00
parent 5512120306
commit 883ae6b845
7 changed files with 130 additions and 36 deletions
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WorkFlowCheck.Common.DTO
{
public class LocationDTO
{
public int Id { get; set; }
public string FullName { get; set; } = null!;
}
}