21 lines
587 B
C#
21 lines
587 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.Infrastructure.Entities.Reports
|
|
{
|
|
public class CallReachReport
|
|
{
|
|
[Key]
|
|
public required string MRUserId { get; set; }
|
|
public string? MedRepName { get; set; }
|
|
public string? Company { get; set; }
|
|
public int TotalTargetCall { get; set; }
|
|
public int TotalActualCallReach { get; set; }
|
|
public decimal TotalCallReachPercentage { get; set; }
|
|
}
|
|
}
|