Wonky.Client/Wonky.Entity/DTO/KrvProtectionVariantDto.cs
2023-04-08 17:46:26 +02:00

11 lines
No EOL
362 B
C#

namespace Wonky.Entity.DTO;
public class KrvProtectionVariantDto
{
public string VariantId { get; set; } = "";
public string ProtectionId { get; set; } = "";
public string Name { get; set; } = "";
public string Description { get; set; } = "";
public string Instruction { get; set; } = "";
public string PictureLink { get; set; } = "";
}