source: PostgreSqlDotnetCore/Models/VetCenterWithCity.cs

main
Last change on this file 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: 584 bytes
Line 
1// File: Models/VetCenterWithCity.cs
2
3namespace PostgreSqlDotnetCore.Models
4{
5 public class VetCenterWithCity
6 {
7 public int id { get; set; }
8 public string vet_center_name { get; set; }
9 public string adress { get; set; }
10 public string city_name { get; set; } // Додајте име на градот
11 public string description { get; set; }
12 public string workinghours { get; set; }
13 public float latitude { get; set; }
14 public float longitude { get; set; }
15 public string phonenumber { get; set; }
16 }
17}
Note: See TracBrowser for help on using the repository browser.