chore: update core libs
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
using DigitalData.Core.Abstractions;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WorkFlow.Application.Dto
|
||||
{
|
||||
public record BaseUpdateDto : IUnique<int>
|
||||
public record BaseUpdateDto
|
||||
{
|
||||
public required int Id { get; init; }
|
||||
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
using DigitalData.Core.Abstractions;
|
||||
namespace WorkFlow.Application.Dto.ProfileControlsTF;
|
||||
|
||||
namespace WorkFlow.Application.Dto.ProfileControlsTF
|
||||
{
|
||||
/// <summary>
|
||||
/// This Data Transfer Object (DTO) serves as a placeholder and does not support updates.
|
||||
/// </summary>
|
||||
public record ProfileControlsTFUpdateDto(long Id) : IUnique<long>;
|
||||
}
|
||||
/// <summary>
|
||||
/// This Data Transfer Object (DTO) serves as a placeholder and does not support updates.
|
||||
/// </summary>
|
||||
public record ProfileControlsTFUpdateDto(long Id);
|
||||
@@ -1,9 +1,6 @@
|
||||
using DigitalData.Core.Abstractions;
|
||||
namespace WorkFlow.Application.Dto.ProfileObjState;
|
||||
|
||||
namespace WorkFlow.Application.Dto.ProfileObjState
|
||||
{
|
||||
/// <summary>
|
||||
/// This Data Transfer Object (DTO) serves as a placeholder and does not support updates.
|
||||
/// </summary>
|
||||
public record ProfileObjStateUpdateDto(long Id) : IUnique<long>;
|
||||
}
|
||||
/// <summary>
|
||||
/// This Data Transfer Object (DTO) serves as a placeholder and does not support updates.
|
||||
/// </summary>
|
||||
public record ProfileObjStateUpdateDto(long Id);
|
||||
@@ -1,9 +1,6 @@
|
||||
using DigitalData.Core.Abstractions;
|
||||
namespace WorkFlow.Application.Dto.State;
|
||||
|
||||
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>;
|
||||
}
|
||||
/// <summary>
|
||||
/// This Data Transfer Object (DTO) serves as a placeholder and does not support updates.
|
||||
/// </summary>
|
||||
public record StateUpdateDto(int Id);
|
||||
Reference in New Issue
Block a user