24 lines
647 B
C#
24 lines
647 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SoftwareInstallationDatabaseImplement.Models
|
|
{
|
|
public class PackageComponent
|
|
{
|
|
public int Id { get; set; }
|
|
[Required]
|
|
public int SoftwareId { get; set; }
|
|
[Required]
|
|
public int ComponentId { get; set; }
|
|
[Required]
|
|
public int Count { get; set; }
|
|
public virtual Component Component { get; set; } = new();
|
|
public virtual Software Software { get; set; } = new();
|
|
}
|
|
}
|