2025-07-11 00:18:14 +02:00

16 lines
409 B
C#

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