Files
BrightSharp.Toolkit/AppleJobs.Data/Models/Common/Customer.cs

16 lines
414 B
C#
Raw Normal View History

2017-01-09 13:25:52 +03:00
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
2017-01-10 21:06:47 +03:00
namespace AppleJobs.Data.Models.Common
2017-01-09 13:25:52 +03:00
{
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; }
2017-01-10 21:06:47 +03:00
2017-01-09 13:25:52 +03:00
}
}