21 lines
761 B
C#
21 lines
761 B
C#
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;
|
|
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; }
|
|
}
|