source: PostgreSqlDotnetCore/Models/DiagnosticsClass.cs@ 72b1da2

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

init commit Elena

  • Property mode set to 100644
File size: 460 bytes
RevLine 
[2aea0fd]1using System;
2using System.Collections.Generic;
3using System.ComponentModel.DataAnnotations;
4using System.ComponentModel.DataAnnotations.Schema;
5using System.Linq;
6using System.Web;
7
8namespace PostgreSqlDotnetCore.Models
9{
10 [Table("diagnostics", Schema = "project")]
11 public class DiagnosticsClass
12 {
13 [Key]
14 public int id { get; set; }
15 public string description { get; set; }
16 public int usersid { get; set; }
17
18 }
19}
Note: See TracBrowser for help on using the repository browser.