This commit is contained in:
2025-10-16 16:42:45 +02:00
parent 2bcca6f856
commit a014c6c9f7
5 changed files with 39 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
namespace PyroFetes.DTO.ProductEffect.Response;
// DTO utilisé pour renvoyer les informations dun produit lié à un effet
public class GetProductEffectDto
{
// Identifiant du produit concerné
public int ProductId { get; set; }
// Identifiant de l'effet
public int EffectId { get; set; }
}