mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
599 B
22 lines
599 B
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Volo.Abp.Domain.Entities;
|
|
using Volo.Abp.ObjectExtending;
|
|
using Volo.Abp.Validation;
|
|
using Volo.CmsKit.Comments;
|
|
|
|
namespace Volo.CmsKit.Public.Comments;
|
|
|
|
[Serializable]
|
|
public class UpdateCommentInput : ExtensibleObject, IHasConcurrencyStamp
|
|
{
|
|
[Required]
|
|
[DynamicStringLength(typeof(CommentConsts), nameof(CommentConsts.MaxTextLength))]
|
|
public string Text { get; set; }
|
|
|
|
public string ConcurrencyStamp { get; set; }
|
|
|
|
public Guid? CaptchaToken { get; set; }
|
|
|
|
public int CaptchaAnswer { get; set; }
|
|
}
|
|
|