2025-07-11 10:50:46 +02:00

15 lines
395 B
C#

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