This commit is contained in:
Tizian.Breuch
2025-08-12 11:31:25 +02:00
parent 1692fe198e
commit bbea2458ae
10 changed files with 187 additions and 46 deletions

View File

@@ -1,16 +1,15 @@
// Auto-generiert von CreateWebshopFiles.ps1
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
// src/Webshop.Application/DTOs/Settings/SettingDto.cs
using System.ComponentModel.DataAnnotations;
namespace Webshop.Application.DTOs
namespace Webshop.Application.DTOs.Settings
{
public class SettingDto
{
[Required]
public string Key { get; set; } = string.Empty;
public string Value { get; set; } = string.Empty;
public string? Value { get; set; }
public string? Description { get; set; }
public DateTimeOffset LastModifiedDate { get; set; }
public bool IsActive { get; set; }
public string? Group { get; set; }
}
}
}