feat: add 客户端

This commit is contained in:
GukSang.Jin
2026-02-25 15:43:47 +08:00
parent 833031864b
commit aac0dd8fec
16 changed files with 888 additions and 39 deletions

View File

@@ -0,0 +1,10 @@
namespace PetWashControl.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;
}