18 lines
417 B
C#
18 lines
417 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AutoService.Models
|
|
{
|
|
public class Order
|
|
{
|
|
public string ClientName { get; set; }
|
|
public string AutoModel { get; set; }
|
|
public int ServiceId { get; set; }
|
|
public int TotalPrice { get; set; }
|
|
public int DiscountPercent { get; set; }
|
|
}
|
|
}
|