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