implémenter l'interface adéquate

main
Paul Schneider 9 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;
using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations.Schema;
using Newtonsoft.Json; using Newtonsoft.Json;
using Yavsc.Interfaces;
namespace Yavsc.Models namespace Yavsc.Models
{ {
public partial class Blog public partial class Blog : IBlog
{ {
[Key(), DatabaseGenerated(DatabaseGeneratedOption.Identity)] [Key(), DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long Id { get; set; } public long Id { get; set; }

Loading…