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