IdentityServer8
This commit is contained in:
parent
18ddbead66
commit
a16188338a
47 changed files with 4077 additions and 529 deletions
17
src/Yavsc.Server/ViewModels/BlogSpot/NewPost.cs
Normal file
17
src/Yavsc.Server/ViewModels/BlogSpot/NewPost.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Yavsc.ViewModels.BlogSpot
|
||||
{
|
||||
public class NewPost
|
||||
{
|
||||
[Required]
|
||||
public string Title{ get; set; }
|
||||
|
||||
[Required]
|
||||
public string Content { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue