19 lines
489 B
C#
19 lines
489 B
C#
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|||
|
namespace FlowerShopDatabaseImplement.Models
|
|||
|
{
|
|||
|
public class FlowerComponent
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
[Required]
|
|||
|
public int FlowerId { get; set; }
|
|||
|
[Required]
|
|||
|
public int ComponentId { get; set; }
|
|||
|
[Required]
|
|||
|
public int Count { get; set; }
|
|||
|
public virtual Component Component { get; set; } = new();
|
|||
|
public virtual Flower Flower { get; set; } = new();
|
|||
|
}
|
|||
|
|
|||
|
}
|