9 lines
158 B
C#
9 lines
158 B
C#
namespace LetterBoxdUnwatchedGenerator
|
|
{
|
|
public interface IMovie
|
|
{
|
|
public string Title { get; }
|
|
public int Year { get; }
|
|
}
|
|
}
|