namespace Bit.Api.Vault.Models.Response;
public class SecurityTaskMetricsResponseModel
{
public SecurityTaskMetricsResponseModel(int completedTasks, int totalTasks)
{
CompletedTasks = completedTasks;
TotalTasks = totalTasks;
}
///
/// Number of tasks that have been completed in the organization.
///
public int CompletedTasks { get; set; }
///
/// Total number of tasks in the organization, regardless of their status.
///
public int TotalTasks { get; set; }
}