mirror of https://github.com/abpframework/abp.git
2 changed files with 23 additions and 0 deletions
@ -0,0 +1,10 @@ |
|||
using System; |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
namespace Volo.CmsKit.Domain.Volo.CmsKit.Blogs |
|||
{ |
|||
public class Blog : FullAuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Name { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,13 @@ |
|||
using System; |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
namespace Volo.CmsKit.Domain.Volo.CmsKit.Blogs |
|||
{ |
|||
public class BlogPost : FullAuditedEntity<Guid> |
|||
{ |
|||
public Guid BlogId { get; set; } |
|||
public string Title { get; set; } |
|||
public string CoverImageUrl { get; set; } |
|||
public bool IsPublished { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue