using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MagMan.Data.Admin.DbModels
{
//
// This is here so CodeMaid doesn't reorganize this document
//
[Table("CustomerList")]
public partial class CustomerModel
{
///
/// Primary Key AUTO
///
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int CustomerID { get; set; }
///
/// Nome
///
public string Name { get; set; } = "";
///
/// Note/Descrizione
///
public string Note { get; set; } = "";
///
/// Check attivo
///
public bool IsActive { get; set; } = false;
///
/// DateTime Attivazione
///
public DateTime DtActivation { get; set; } = DateTime.Today;
}
}