< Summary

Information
Class: cat_cafe.Dto.CustomerDto
Assembly: cat_cafe
File(s): C:\Users\draia\Documents\Dev\N3_CSHARP\cat_cafe\cat_cafe\Dto\CustomerDto.cs
Line coverage
100%
Covered lines: 3
Uncovered lines: 0
Coverable lines: 3
Total lines: 14
Line coverage: 100%
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

File(s)

C:\Users\draia\Documents\Dev\N3_CSHARP\cat_cafe\cat_cafe\Dto\CustomerDto.cs

#LineLine coverage
 1using System.ComponentModel.DataAnnotations;
 2
 3namespace cat_cafe.Dto
 4{
 5    public class CustomerDto
 6    {
 327        public long Id { get; set; }
 8        [Required]
 489        public string FullName { get; set; } = "";
 10        [Required]
 4611        public int Age { get; set; } = 0;
 12    }
 13}
 14

Methods/Properties

Id()
FullName()
Age()