19 lines
408 B
C#
19 lines
408 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SchoolContracts.ViewModels
|
|
{
|
|
public class ReportExpensesViewModel
|
|
{
|
|
[DisplayName("Название затраты")]
|
|
public string ExpenseName { get; set; } = string.Empty;
|
|
[DisplayName("Сумма")]
|
|
public double Sum { get; set; }
|
|
}
|
|
|
|
}
|