File: System\ServiceModel\Syndication\SyndicationTextInput.cs | Web Access |
Project: src\src\libraries\System.ServiceModel.Syndication\src\System.ServiceModel.Syndication.csproj (System.ServiceModel.Syndication) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.ServiceModel.Syndication { public class SyndicationTextInput { public string Description { get; set; } public string Title { get; set; } public SyndicationLink Link { get; set; } public string Name { get; set; } } } |