main
Last change
on this file since 8f8226c was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 4 months ago |
init commit Elena
|
-
Property mode
set to
100644
|
File size:
564 bytes
|
Rev | Line | |
---|
[2aea0fd] | 1 | namespace PostgreSqlDotnetCore.Models
|
---|
| 2 | {
|
---|
| 3 | using System.ComponentModel.DataAnnotations;
|
---|
| 4 | using System.ComponentModel.DataAnnotations.Schema;
|
---|
| 5 |
|
---|
| 6 | public class PetCareAllData
|
---|
| 7 | {
|
---|
| 8 |
|
---|
| 9 | public List<Pet_CaresClass> PetCares { get; set; }
|
---|
| 10 | public List<VetCenter> VetCenters { get; set; }
|
---|
| 11 | public List<UsersClass> Users { get; set; }
|
---|
| 12 |
|
---|
| 13 | public PetCareAllData()
|
---|
| 14 | {
|
---|
| 15 | Users = new List<UsersClass>();
|
---|
| 16 | VetCenters = new List<VetCenter>();
|
---|
| 17 | PetCares = new List<Pet_CaresClass>();
|
---|
| 18 | }
|
---|
| 19 | }
|
---|
| 20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.