mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
18 lines
607 B
C#
18 lines
607 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Orchard.Environment.Extensions.Models;
|
|
using Orchard.Packaging.Models;
|
|
|
|
namespace Orchard.Packaging.ViewModels {
|
|
public class PackagingHarvestViewModel {
|
|
public IEnumerable<PackagingSource> Sources { get; set; }
|
|
public IEnumerable<ExtensionDescriptor> Extensions { get; set; }
|
|
|
|
[Required]
|
|
public string ExtensionName { get; set; }
|
|
|
|
public string FeedUrl { get; set; }
|
|
public string User { get; set; }
|
|
public string Password { get; set; }
|
|
}
|
|
} |