19 lines
446 B
C#
Raw Normal View History

2023-04-09 01:27:52 +04:00
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; }
2023-04-09 01:27:52 +04:00
}
}