mirror of https://github.com/abpframework/abp.git
4 changed files with 27 additions and 35 deletions
@ -1,13 +0,0 @@ |
|||
using System.Collections.Generic; |
|||
|
|||
namespace Volo.CmsKit.Web.Pages.CmsKit.Shared.Components.ReactionSelection |
|||
{ |
|||
public class ReactionSelectionViewModel |
|||
{ |
|||
public string EntityType { get; set; } |
|||
|
|||
public string EntityId { get; set; } |
|||
|
|||
public List<ReactionViewModel> Reactions { get; set; } |
|||
} |
|||
} |
|||
@ -1,21 +0,0 @@ |
|||
using JetBrains.Annotations; |
|||
|
|||
namespace Volo.CmsKit.Web.Pages.CmsKit.Shared.Components.ReactionSelection |
|||
{ |
|||
public class ReactionViewModel |
|||
{ |
|||
[NotNull] |
|||
public string Name { get; set; } |
|||
|
|||
[CanBeNull] |
|||
public string DisplayName { get; set; } |
|||
|
|||
[NotNull] |
|||
public string Icon { get; set; } |
|||
|
|||
public int Count { get; set; } |
|||
|
|||
public bool IsSelectedByCurrentUser { get; set; } |
|||
|
|||
} |
|||
} |
|||
Loading…
Reference in new issue