15 lines
210 B
C#
15 lines
210 B
C#
//
|
|
// Copyright (c) Antmicro
|
|
//
|
|
// Full license details are defined in the 'LICENSE' file.
|
|
//
|
|
|
|
namespace TermSharp.Misc
|
|
{
|
|
public interface IGenerationAware
|
|
{
|
|
int Generation { get; }
|
|
}
|
|
}
|
|
|