dorset-backend-2/Shop/Model/Customer.cs

12 lines
219 B
C#

using System.ComponentModel.DataAnnotations;
namespace Shop.Model
{
public class Customer
{
[Key]
public int customer_id { get; set; }
public string customer_name { get; set; }
}
}