Avalonia/Perspex.Base/IDescription.cs

14 строки
402 B
C#

// -----------------------------------------------------------------------
// <copyright file="IDescription.cs" company="Steven Kirk">
// Copyright 2014 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
namespace Perspex
{
public interface IDescription
{
string Description { get; }
}
}