Files
KonSoft.Clean/modules/admin/src/KonSoft.Admin.Application.Contracts/Dtos/CreateOrderDto.cs
2025-10-16 10:30:51 +08:00

19 lines
443 B
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace KonSoft.Admin.Dtos;
public class CreateOrderDto
{
[Required] public Guid CustomerId { get; set; }
[Required] public Guid ServiceCategoryId { get; set; }
[Required] public DateTime ServiceTime { get; set; }
[Required] public decimal Amount { get; set; }
[Required] public AddressDto Address { get; set; }
public string Remark { get; set; }
}