mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-31 04:43:40 +01:00
29 lines
605 B
C#
29 lines
605 B
C#
using System;
|
|
|
|
namespace Dalamud.Interface.Internal.Windows.PluginInstaller;
|
|
|
|
/// <summary>
|
|
/// Class representing a changelog entry.
|
|
/// </summary>
|
|
internal interface IChangelogEntry
|
|
{
|
|
/// <summary>
|
|
/// Gets the title of the entry.
|
|
/// </summary>
|
|
string Title { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the version this entry applies to.
|
|
/// </summary>
|
|
string Version { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the text of the entry.
|
|
/// </summary>
|
|
string Text { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the date of the entry.
|
|
/// </summary>
|
|
DateTime Date { get; }
|
|
}
|