hitting the performer
This commit is contained in:
parent
9d97994e76
commit
62a6236865
27 changed files with 1603 additions and 35 deletions
11
src/Yavsc.Abstract/HairCut/HairPrestationDto.cs
Normal file
11
src/Yavsc.Abstract/HairCut/HairPrestationDto.cs
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue