11 lines
347 B
C#
11 lines
347 B
C#
namespace Application.Features.DashboardManager.Queries;
|
|
|
|
public class CRMItem
|
|
{
|
|
public double? CampaignTotalAmount { get; init; }
|
|
public double? LeadTotalAmount { get; init; }
|
|
public double? BudgetTotalAmount { get; init; }
|
|
public double? ExpenseTotalAmount { get; init; }
|
|
public double? ClosedTotalAmount { get; init; }
|
|
}
|