PIbd-23_Starostin_I.K._Ship.../ShipyardDatabaseImplement/ShipComponent.cs

22 lines
614 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShipyardDatabaseImplement.Models
{
public class ShipComponent
{
public int Id { get; set; }
[Required]
public int ShipId { get; set; }
[Required]
public int ComponentId { get; set; }
[Required]
public int Count { get; set; }
public virtual Component Component { get; set; } = new();
public virtual Ship Ship { get; set; } = new();
}
}