23 lines
654 B
C#
23 lines
654 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.Infrastructure.Dto.Reports
|
|
{
|
|
public class ReportsDto
|
|
{
|
|
public required string UserId { get; set; }
|
|
public string? MedRepName { get; set; }
|
|
public string? Company { get; set; }
|
|
public DateOnly CallMonth { get; set; }
|
|
public Guid MRRawPlanId { get; set; }
|
|
public string? MissedReason { get; set; }
|
|
public string? Period { get; set; }
|
|
public DateTime? StartDate { get; set; }
|
|
public DateTime? EndDate { get; set; }
|
|
}
|
|
}
|