123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
-
- namespace WebApiWebSem.DataAccess.Models
- {
- public partial class articles
- {
-
- public string id { get; set; }
-
- public string text { get; set; }
-
- public string picture_url { get; set; }
-
- public string picture_caption { get; set; }
-
- public string type { get; set; }
-
- public DateTime created_at { get; set; }
-
- public DateTime? updated_at { get; set; }
-
-
-
- public virtual IList<articles_fields> articles_fields_fk { get; set; }
-
- }
- }
|