22 lines
450 B
C#
22 lines
450 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace tiron_demo.Models;
|
|
|
|
public partial class PartnerProduct
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int Product { get; set; }
|
|
|
|
public int Partner { get; set; }
|
|
|
|
public int Amount { get; set; }
|
|
|
|
public DateOnly? SellDate { get; set; }
|
|
|
|
public virtual Partner PartnerNavigation { get; set; } = null!;
|
|
|
|
public virtual Product ProductNavigation { get; set; } = null!;
|
|
}
|