ShopPlatform.Web 1.0.0.0
농산물, 소프트웨어 라이선스와 개발 용역을 직접 판매하는 CodeMaru 직영 쇼핑몰입니다.
로딩중...
검색중...
일치하는것 없음
CartItem.cs
이 파일의 문서화 페이지로 가기
2
11public sealed class CartItem
12{
21 public int ProductId { get; set; }
30 public string ProductName { get; set; } = string.Empty;
39 public decimal UnitPrice { get; set; }
48 public int Quantity { get; set; }
57 public decimal Subtotal => UnitPrice * Quantity;
58}