hitting the performer

This commit is contained in:
Paul Schneider 2026-08-31 04:15:10 +01:00
commit 62a6236865
Signed by: notazof
GPG key ID: 1DD5D838E5343B06
27 changed files with 1603 additions and 35 deletions

View file

@ -0,0 +1,11 @@
namespace Yavsc.Models.Haircut;
/// <summary>
/// Lightweight hair-prestation description exposed to API clients.
/// </summary>
public sealed class HairPrestationDto
{
public long Id { get; set; }
public string Title { get; set; } = string.Empty;
public string Details { get; set; } = string.Empty;
}