2026-02-25 15:41:00 +08:00
|
|
|
namespace PetWash.Api.Models;
|
|
|
|
|
|
|
|
|
|
public class Package
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
public decimal Price { get; set; }
|
|
|
|
|
public int DurationMinutes { get; set; }
|
|
|
|
|
public string Description { get; set; } = string.Empty;
|
2026-03-18 13:53:44 +08:00
|
|
|
public int FirstSprayWaterTime { get; set; }
|
|
|
|
|
public int AfterShampoo1SprayTime { get; set; }
|
|
|
|
|
public int AfterShampoo2SprayTime { get; set; }
|
|
|
|
|
public int AfterShampoo3SprayTime { get; set; }
|
|
|
|
|
public int SprayShampoo1Time { get; set; }
|
|
|
|
|
public int SprayShampoo2Time { get; set; }
|
|
|
|
|
public int SprayShampoo3Time { get; set; }
|
|
|
|
|
public int HotAirTime { get; set; }
|
|
|
|
|
public int ColdAirTime { get; set; }
|
|
|
|
|
public int UvSterilizationTime { get; set; }
|
2026-02-25 15:41:00 +08:00
|
|
|
}
|