mirror of
https://github.com/fiodarsazanavets/aspire-13-examples.git
synced 2026-06-20 12:23:14 +00:00
12 lines
199 B
C#
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; }
|
|
}
|