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