forked from sanchezvem/PyroFetes
7 lines
138 B
C#
7 lines
138 B
C#
namespace API.DTO.Effect.Request;
|
|
|
|
public class UpdateEffectDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Label { get; set; }
|
|
} |