Files
WorkFlowCheck/src/WorkFlowCheck.Common/DTO/LocationDTO.cs
T
2025-02-27 12:47:58 +01:00

15 lines
290 B
C#

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!;
}
}