< Summary

Information
Class: LGDXRobotCloud.Data.Models.DTOs.V1.Requests.AutoTaskNextDto
Assembly: LGDXRobotCloud.Data
File(s): /builds/yukaitung/lgdxrobot2-cloud/LGDXRobotCloud.Data/Models/DTOs/V1/Requests/AutoTaskNextDto.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 11
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_RobotId()100%210%
get_NextToken()100%210%

File(s)

/builds/yukaitung/lgdxrobot2-cloud/LGDXRobotCloud.Data/Models/DTOs/V1/Requests/AutoTaskNextDto.cs

#LineLine coverage
 1using System.ComponentModel.DataAnnotations;
 2
 3namespace LGDXRobotCloud.Data.Models.DTOs.V1.Requests;
 4
 5public record AutoTaskNextDto
 6{
 7  [Required]
 08  public required Guid RobotId { get; set; }
 9
 010  public required string NextToken { get; set; }
 11}

Methods/Properties

get_RobotId()
get_NextToken()