2023-04-09 08:53:28 +04:00

19 lines
446 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ZooDataModels.Models;
namespace ZooContracts.ViewModels
{
public class CostViewModel : ICostModel
{
public int Id { get; set; }
public string CostName { get; set; }
public double Sum { get; set; }
public int Count { get; set; }
public int EmployeeId { get; set; }
}
}