PIAPS_CW/DataModels/Models/ICartItem.cs
Аришина) d402b05d5f 1
2024-11-24 19:51:40 +04:00

19 lines
418 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataModels.Models
{
public interface ICartItem : IId
{
Guid UserId { get; }
int Count { get; }
DateTime DateCreated { get; set; }
Guid ProductId { get; set; }
string ProductName { get; set; }
bool IsClosed { get; set; }
}
}