New version
This commit is contained in:
16
Drab.LocalDb/Entities/OrderDb.cs
Normal file
16
Drab.LocalDb/Entities/OrderDb.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Drab.LocalDb.Entities;
|
||||
|
||||
public class OrderDb
|
||||
{
|
||||
[Key]
|
||||
public long OrderId { get; set; }
|
||||
public long DokId { get; set; }
|
||||
public DateTime Created { get; set; }
|
||||
public bool IsPrinted { get; set; }
|
||||
public string Filename { get; set; }
|
||||
public string Shop { get; set; }
|
||||
public string OrderNumber { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user