Files
WorkFlowCheck/src/WorkFlowCheck.MAUI/DataLayer/Entities/Location.cs
T

17 lines
359 B
C#

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