mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-24 13:33:34 +08:00
16 lines
425 B
C#
16 lines
425 B
C#
![]() |
using System.ComponentModel.DataAnnotations;
|
||
|
using Orchard.Mvc.ViewModels;
|
||
|
|
||
|
namespace Orchard.Blogs.ViewModels {
|
||
|
public class CreateBlogViewModel : AdminViewModel {
|
||
|
[Required]
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
//TODO: (erikpo) Need a data type for slug
|
||
|
[Required]
|
||
|
public string Slug { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
public bool Enabled { get; set; }
|
||
|
}
|
||
|
}
|