20 lines
484 B
C#
20 lines
484 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 Service
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
public decimal Cost { get; set; }
|
|||
|
public List<VisitService> VisitServices { get; set; }
|
|||
|
}
|
|||
|
}
|