Files
WorkFlowCheck/src/WorkFlowCheck.MAUI/DataLayer/Entities/Location.cs
T
2025-02-27 15:46:07 +01:00

15 lines
300 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WorkFlowCheck.MAUI.DataLayer.Entities
{
public class Location
{
public int Id { get; set; }
public string FullName { get; set; } = null!;
}
}