You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FeedDbo.cs 270B

123456789101112131415
  1. using System;
  2. namespace WebApiWebSem.Dbo.Feed
  3. {
  4. public class FeedDbo
  5. {
  6. public string Link { get; set; }
  7. public string Title { get; set; }
  8. public string Content { get; set; }
  9. public DateTime PublishDate { get; set; }
  10. }
  11. }