15 lines
444 B
C#
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; }
|
|
}
|
|
} |