settings
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user