main
Last change
on this file was e9bb9d1, checked in by ElenaMoskova <elena.moskova99@…>, 3 months ago |
Use of views
- Use of views in VetCenters.
- Ability to provide a response to a given response.
|
-
Property mode
set to
100644
|
File size:
515 bytes
|
Line | |
---|
1 | namespace 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.