forked from sanchezvem/PyroFetes
7 lines
181 B
C#
7 lines
181 B
C#
namespace PyroFetes.DTO.SettingDTO.Request;
|
|
|
|
public class PatchSettingElectronicSignatureDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? ElectronicSignature { get; set; }
|
|
} |