implémenter l'interface adéquate

vnext
Paul Schneider 8 years ago
parent 312327d83a
commit 189f800d46
1 changed files with 2 additions and 1 deletions

@ -2,10 +2,11 @@ using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Newtonsoft.Json;
using Yavsc.Interfaces;
namespace Yavsc.Models
{
public partial class Blog
public partial class Blog : IBlog
{
[Key(), DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long Id { get; set; }

Loading…