refactor(core,domain): Переименованы shared dto
This commit is contained in:
@@ -10,11 +10,11 @@ namespace PARR.Domain.DTOs.RobotTaskRobotStatus
|
||||
|
||||
public Guid TemplateId { get; init; }
|
||||
|
||||
public RobotDto? Robot { get; init; }
|
||||
public RobotResult? Robot { get; init; }
|
||||
|
||||
public RobotTaskStatusDto? TaskStatus { get; init; }
|
||||
public RobotTaskStatusResult? TaskStatus { get; init; }
|
||||
|
||||
public RobotStatusDto? RobotStatus { get; init; }
|
||||
public RobotStatusResult? RobotStatus { get; init; }
|
||||
|
||||
public int AttemptsNumber { get; init; }
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
namespace PARR.Domain.DTOs.Shared
|
||||
{
|
||||
public record RobotDto
|
||||
public record RobotResult
|
||||
{
|
||||
public int Code { get; init; }
|
||||
public required string Name { get; init; }
|
||||
@@ -1,6 +1,6 @@
|
||||
namespace PARR.Domain.DTOs.Shared
|
||||
{
|
||||
public record RobotStatusDto
|
||||
public record RobotStatusResult
|
||||
{
|
||||
public int Code { get; init; }
|
||||
public string? Name { get; init; }
|
||||
@@ -1,6 +1,6 @@
|
||||
namespace PARR.Domain.DTOs.Shared
|
||||
{
|
||||
public record RobotTaskStatusDto
|
||||
public record RobotTaskStatusResult
|
||||
{
|
||||
public int Code { get; init; }
|
||||
public required string Name { get; init; }
|
||||
Reference in New Issue
Block a user