Initial commit
Initial commit til Git. V2 er deployed
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
// <auto-generated> This file has been auto generated by EF Core Power Tools. </auto-generated>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace Pos.Dispatcher.Database.Models;
|
||||
|
||||
[Table("sale")]
|
||||
public partial class Sale
|
||||
{
|
||||
[Key]
|
||||
[Column(TypeName = "int(11)")]
|
||||
public int Id { get; set; }
|
||||
|
||||
[Column(TypeName = "datetime")]
|
||||
public DateTime Time { get; set; }
|
||||
|
||||
[Column(TypeName = "int(11)")]
|
||||
public int EmployeeId { get; set; }
|
||||
|
||||
[Column(TypeName = "tinyint(4)")]
|
||||
public sbyte? IsModified { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user