using System;
namespace MediaBrowser.Model.Updates
{
///
/// Class RepositoryInfo.
///
public class RepositoryInfo
{
///
/// Gets or sets the name.
///
/// The name.
public string Name { get; set; }
///
/// Gets or sets the URL.
///
/// The URL.
public string Url { get; set; }
}
}