mirror of
https://github.com/VitalickS/BrightSharp.Toolkit.git
synced 2026-03-21 10:21:16 +00:00
16 lines
414 B
C#
16 lines
414 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace AppleJobs.Data.Models.Common
|
|
{
|
|
public class Customer
|
|
{
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Code { get; set; }
|
|
public string MainEmail { get; set; }
|
|
|
|
}
|
|
}
|