source: PostgreSqlDotnetCore/Models/PetCareAllData.cs@ 2639fab

main
Last change on this file since 2639fab was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 2 months ago

init commit Elena

  • Property mode set to 100644
File size: 564 bytes
Line 
1namespace 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.