21 lines
489 B
C#
21 lines
489 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Database.Models
|
|
{
|
|
[Table("sale")]
|
|
public class SaleEntity
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public DateTime Time { get; set; }
|
|
public int EmployeeId { get; set; }
|
|
public bool IsModified { get; set; }
|
|
}
|
|
}
|