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; } } }