Files
raven/server/AyaNova/models/PartAssemblyItem.cs
2021-01-14 22:49:59 +00:00

24 lines
691 B
C#

using System;
using System.Collections.Generic;
using AyaNova.Biz;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Newtonsoft.Json;
namespace AyaNova.Models
{
//https://stackoverflow.com/questions/46517584/how-to-add-a-parent-record-with-its-children-records-in-ef-core#46615455
public class PartAssemblyItem
{
public long Id { get; set; }
public uint Concurrency { get; set; }
[Required]
public long PartAssemblyId { get; set; }
public long PartId { get; set; }
[JsonIgnore]
public PartAssembly PartAssembly { get; set; }
}//eoc
}//eons