|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Microsoft.CodeAnalysis.Completion;
namespace Microsoft.CodeAnalysis.Features.EmbeddedLanguages.DateAndTime;
internal sealed partial class DateAndTimeEmbeddedCompletionProvider
{
private readonly struct DateAndTimeItem(
string displayText, string inlineDescription, string fullDescription, CompletionChange change, bool isDefault)
{
public readonly string DisplayText = displayText;
public readonly string InlineDescription = inlineDescription;
public readonly string FullDescription = fullDescription;
public readonly CompletionChange Change = change;
public readonly bool IsDefault = isDefault;
}
}
|