- IUnique-Schnittstellen für ProfileControlsTFUpdateDto, ProfileObjStateUpdateDto und StateUpdateDto implementiert.
9 lines
297 B
C#
9 lines
297 B
C#
using DigitalData.Core.Abstractions;
|
|
|
|
namespace WorkFlow.Application.DTO.ProfileControlsTF
|
|
{
|
|
/// <summary>
|
|
/// This Data Transfer Object (DTO) serves as a placeholder and does not support updates.
|
|
/// </summary>
|
|
public record ProfileControlsTFUpdateDto(int Id) : IUnique<int>;
|
|
} |