LSFE/LSFE.Infrastructure/Entities/Reports/CallReachReport.cs
2026-07-30 10:31:04 +08:00

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; }
}
}