main
Last change
on this file was e90ba32, checked in by ElenaMoskova <elena.moskova99@…>, 3 months ago |
fix issues
fix bugs with nested tables
fix delete nested fk items
|
-
Property mode
set to
100644
|
File size:
559 bytes
|
Line | |
---|
1 | // File: Models/VetCenterWithCity.cs
|
---|
2 |
|
---|
3 | namespace PostgreSqlDotnetCore.Models
|
---|
4 | {
|
---|
5 | public class BlogUsers
|
---|
6 | {
|
---|
7 | public int id { get; set; }
|
---|
8 | public int users_id { get; set; }
|
---|
9 | public string user_name { get; set; }
|
---|
10 | public string user_lastname { get; set; }
|
---|
11 | public string user_email { get; set; } // Додајте име на градот
|
---|
12 | public string consultation_title { get; set; }
|
---|
13 | public string consultation_description { get; set; }
|
---|
14 | public DateOnly consultation_date { get; set; }
|
---|
15 |
|
---|
16 | }
|
---|
17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.