17 lines
373 B
C#
17 lines
373 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TestAppRuna.Entities
|
|
{
|
|
public class Product
|
|
{
|
|
public Guid ProductID { get; set; }
|
|
public string Name { get; set; }
|
|
public decimal Price { get; set; }
|
|
public ICollection<Cart> Carts { get; set; }
|
|
}
|
|
}
|