forked from sanchezvem/pyrofetes-backend
7 lines
154 B
C#
7 lines
154 B
C#
namespace PyroFetes.DTO.SettingDTO.Request;
|
|
|
|
public class PatchSettingLogoDto
|
|
{
|
|
public int Id { get; set; }
|
|
public IFormFile? Logo { get; set; }
|
|
} |