19 lines
486 B
C#
19 lines
486 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace VetClinicDatabaseImplement.Models
|
|
{
|
|
public class Expense
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public decimal Sum { get; set; }
|
|
public List<ServiceExpense> ServiceExpenses { get; set; }
|
|
}
|
|
}
|