You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
492 B
C#

namespace DS.WMS.Core.CarModule.Dtos;
public class TemporaryCarInput
{
public string Id { get; set; }
public string Owner { get; set; }
public string PlateNo { get; set; }
public string PhoneNo { get; set; }
public DateTime? StartTime { get; set; }
public DateTime? EndTime { get; set; }
public int? Status { get; set; }
public int? AllowTimes { get; set; }
public string Note { get; set; }
}