mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-14 19:04:51 +08:00
9 lines
231 B
C#
9 lines
231 B
C#
using System;
|
|
|
|
namespace Orchard.Packaging.Services {
|
|
public class PackagingSource {
|
|
public Guid Id { get; set; }
|
|
public string FeedTitle { get; set; }
|
|
public string FeedUrl { get; set; }
|
|
}
|
|
} |