Files
OnlineShop/AppWithAuthentication/OnlineShop/OnlineShop.ApiService/Model/Order.cs
T
2026-02-03 20:35:51 +00:00

12 lines
199 B
C#

using System.ComponentModel.DataAnnotations;
namespace OnlineShop.ApiService.Model;
public class Order
{
[Key]
public int Id { get; set; }
public double TotalAmount { get; set; }
}