source: PostgreSqlDotnetCore/Models/VetCenter.cs@ 2aea0fd

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

init commit Elena

  • Property mode set to 100644
File size: 862 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel.DataAnnotations;
4using System.ComponentModel.DataAnnotations.Schema;
5using System.IO;
6using System.Linq;
7using System.Text;
8
9namespace PostgreSqlDotnetCore.Models
10{
11 [Table("vet_centers", Schema = "project")]
12 public class VetCenter
13 {
14 [Key]
15 public int id { get; set; }
16
17 [Required(ErrorMessage = "The name is required")]
18 public string name { get; set; }
19 [Required(ErrorMessage = "The adress is required")]
20 public string adress { get; set; }
21 public string description { get; set; }
22 public string workinghours { get; set; }
23 public float latitude { get; set; }
24 public float longitude { get; set; }
25 public string phonenumber { get; set; }
26 public int citiesid { get; set; }
27
28
29 }
30}
Note: See TracBrowser for help on using the repository browser.