Removed explicit table mapping attributes from EndpointAuthDto, ProfileDto, and RecActionDto to decouple DTOs from database schema definitions.
30 lines
631 B
C#
30 lines
631 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace ReC.Application.Common.Dto;
|
|
|
|
public record ProfileDto
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public bool? Active { get; set; }
|
|
|
|
public string? Type { get; set; }
|
|
|
|
public string? Mandantor { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public string? Description { get; set; }
|
|
|
|
public string? LogLevel { get; set; }
|
|
|
|
public string? Language { get; set; }
|
|
|
|
public string? AddedWho { get; set; }
|
|
|
|
public DateTime? AddedWhen { get; set; }
|
|
|
|
public string? ChangedWho { get; set; }
|
|
|
|
public DateTime? ChangedWhen { get; set; }
|
|
} |