Files
Tizian.Breuch bbea2458ae settings
2025-08-12 11:31:25 +02:00

15 lines
444 B
C#

// src/Webshop.Application/DTOs/Settings/SettingDto.cs
using System.ComponentModel.DataAnnotations;
namespace Webshop.Application.DTOs.Settings
{
public class SettingDto
{
[Required]
public string Key { get; set; } = string.Empty;
public string? Value { get; set; }
public string? Description { get; set; }
public bool IsActive { get; set; }
public string? Group { get; set; }
}
}