source: PostgreSqlDotnetCore/Models/PetDetailsProcedure.cs@ e9bb9d1

main
Last change on this file since e9bb9d1 was e9bb9d1, checked in by ElenaMoskova <elena.moskova99@…>, 4 weeks ago

Use of views

  1. Use of views in VetCenters.
  2. Ability to provide a response to a given response.
  • Property mode set to 100644
File size: 515 bytes
Line 
1namespace PostgreSqlDotnetCore.Models
2{
3 using System.ComponentModel.DataAnnotations;
4
5 public class PetDetailsProcedure
6 {
7 [Key]
8 public int pet_id { get; set; }
9 public string pet_name { get; set; }
10 public string diagnosis_description { get; set; }
11 public string medicine_name { get; set; }
12 public string medicine_description { get; set; }
13 public string therapy_description { get; set; }
14 public DateTime therapy_date { get; set; }
15 }
16}
Note: See TracBrowser for help on using the repository browser.