19 lines
439 B
C#
19 lines
439 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PuferFishDataBase.Models;
|
|
|
|
internal class SaleProduct
|
|
{
|
|
public required string SaleId { get; set; }
|
|
public required string ProductId { get; set; }
|
|
public int Count { get; set; }
|
|
public double Price { get; set; }
|
|
|
|
public Sale? Sale { get; set; }
|
|
public Product? Product { get; set; }
|
|
}
|