27 lines
526 B
C#
27 lines
526 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_DTO
|
|
{
|
|
public class IntegrityStatisicsDTO
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int HighIntegrity { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int MiddleIntegrity { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int LowIntegrity { get; set; }
|
|
}
|
|
}
|