2023-04-09 01:27:52 +04:00

17 lines
363 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; }
}
}