forked from sanchezvem/PyroFetes
gabriel2
This commit is contained in:
12
PyroFetes/DTO/ProductEffect/Response/GetProductEffectDto.cs
Normal file
12
PyroFetes/DTO/ProductEffect/Response/GetProductEffectDto.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace PyroFetes.DTO.ProductEffect.Response;
|
||||
|
||||
// DTO utilisé pour renvoyer les informations d’un 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; }
|
||||
}
|
Reference in New Issue
Block a user