New version

This commit is contained in:
2025-07-11 00:18:14 +02:00
parent 6b6c90272c
commit 49038de2b5
341 changed files with 18364 additions and 0 deletions

View 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; }
}