renamed the base name of the model
This commit is contained in:
parent
6630876b38
commit
83ca421100
104 changed files with 0 additions and 0 deletions
26
Yavsc/Models/Blog/Blog.cs
Normal file
26
Yavsc/Models/Blog/Blog.cs
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using Newtonsoft.Json;
|
||||
using Yavsc.Interfaces;
|
||||
|
||||
namespace Yavsc.Models
|
||||
{
|
||||
public partial class Blog : IBlog
|
||||
{
|
||||
[Key(), DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||
public long Id { get; set; }
|
||||
|
||||
public string Content { get; set; }
|
||||
public DateTime Modified { get; set; }
|
||||
public string Photo { get; set; }
|
||||
public DateTime Posted { get; set; }
|
||||
public int Rate { get; set; }
|
||||
public string Title { get; set; }
|
||||
public string AuthorId { get; set; }
|
||||
|
||||
[ForeignKey("AuthorId"),JsonIgnore]
|
||||
public ApplicationUser Author { set; get; }
|
||||
public bool Visible { get; set; }
|
||||
}
|
||||
}
|
||||
15
Yavsc/Models/Blog/BlogAccess.cs
Normal file
15
Yavsc/Models/Blog/BlogAccess.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Yavsc.Models
|
||||
{
|
||||
|
||||
public partial class BlogAccess
|
||||
{
|
||||
[ForeignKey("Blog.Id")]
|
||||
public long PostId { get; set; }
|
||||
|
||||
[ForeignKey("Circle.Id")]
|
||||
public long CircleId { get; set; }
|
||||
}
|
||||
}
|
||||
16
Yavsc/Models/Blog/comment.cs
Normal file
16
Yavsc/Models/Blog/comment.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
|
||||
namespace Yavsc.Models
|
||||
{
|
||||
public partial class comment
|
||||
{
|
||||
public long _id { get; set; }
|
||||
public string applicationname { get; set; }
|
||||
public string bcontent { get; set; }
|
||||
public DateTime modified { get; set; }
|
||||
public DateTime posted { get; set; }
|
||||
public long? postid { get; set; }
|
||||
public string username { get; set; }
|
||||
public bool visible { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue