Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 299f242

Browse files
AddCommentInput
1 parent 2997c66 commit 299f242

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel.DataAnnotations;
4+
using System.Text;
5+
6+
namespace AspnetRun.Application.Dtos.Issue
7+
{
8+
public class AddCommentInput
9+
{
10+
[Required]
11+
[MaxLength(128)]
12+
public int IssueId { get; set; }
13+
14+
[Required]
15+
[MaxLength(65536)]
16+
public string Message { get; protected set; }
17+
}
18+
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /