mirror of https://github.com/abpframework/abp.git
46 changed files with 95 additions and 43 deletions
@ -1,11 +1,14 @@ |
|||
using System.ComponentModel.DataAnnotations; |
|||
using System; |
|||
using System.ComponentModel.DataAnnotations; |
|||
|
|||
namespace Volo.CmsKit.Admin.Blogs |
|||
{ |
|||
[Serializable] |
|||
public class BlogFeatureInputDto |
|||
{ |
|||
[Required] |
|||
public string FeatureName { get; set; } |
|||
|
|||
public bool IsEnabled { get; set; } |
|||
} |
|||
} |
|||
|
|||
@ -1,8 +1,12 @@ |
|||
namespace Volo.CmsKit.Public.Contents |
|||
using System; |
|||
|
|||
namespace Volo.CmsKit.Public.Contents |
|||
{ |
|||
[Serializable] |
|||
public class GetContentInput |
|||
{ |
|||
public string EntityType { get; set; } |
|||
|
|||
public string EntityId { get; set; } |
|||
} |
|||
} |
|||
|
|||
Loading…
Reference in new issue