using System.Collections.Generic; namespace FabWorks.Core.Models { public class Drawing { public int Id { get; set; } public string DrawingNumber { get; set; } public string Title { get; set; } public string PdfContentHash { get; set; } public int Revision { get; set; } = 1; public virtual ICollection ExportRecords { get; set; } = new List(); } }