deleted unused table

This commit is contained in:
2024-04-29 22:56:58 +02:00
parent 081a31aadc
commit 8cf2b0fbb9

View File

@@ -1,22 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WD7UVN_HFT_2023241.Models
{
public class Client
{
[Key]
public int ID { get; set; }
[Required]
public string NAME { get; set; }
public string EMAIL { get; set; }
public string PHONE { get; set; }
[ForeignKey(nameof(Service))]
public int SERVICE_ID { get; set; }
}
}