16 lines
308 B
C#
16 lines
308 B
C#
namespace CatHasPawsDatabase.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; }
|
|
} |