2025-06-28 16:14:52 +01:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using Yavsc.Models.Blog;
|
|
|
|
|
|
|
|
|
|
namespace Yavsc.Models
|
|
|
|
|
{
|
2025-06-29 18:44:35 +01:00
|
|
|
public class BlogSpotPublication
|
2025-06-28 16:14:52 +01:00
|
|
|
{
|
|
|
|
|
[Key]
|
|
|
|
|
public long BlogpostId { get; set; }
|
|
|
|
|
|
|
|
|
|
[ForeignKey("BlogpostId")]
|
|
|
|
|
public virtual BlogPost BlogPost{ get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|