main
Last change
on this file since a3ce071 was 99d0ecc, checked in by ElenaMoskova <elena.moskova99@…>, 3 months ago |
fix update/create petcares
add new field modify functions
|
-
Property mode
set to
100644
|
File size:
532 bytes
|
Line | |
---|
1 | // File: Models/VetCenterWithCity.cs
|
---|
2 |
|
---|
3 | namespace PostgreSqlDotnetCore.Models
|
---|
4 | {
|
---|
5 | public class Pet_care_appointments
|
---|
6 | {
|
---|
7 | public int id { get; set; }
|
---|
8 | public string user_name { get; set; }
|
---|
9 | public string vet_center_name { get; set; }
|
---|
10 | public string user_lastname { get; set; }
|
---|
11 | public PetsClass PetsClass { get; set; }
|
---|
12 | public string pet_care_title { get; set; }
|
---|
13 | public DateTime starttt_date { get; set; }
|
---|
14 | public DateTime appointment_date { get; set; }
|
---|
15 |
|
---|
16 | }
|
---|
17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.