13 lines
384 B
C#
13 lines
384 B
C#
namespace MeetTheTeacher.Model;
|
|
|
|
/// <summary>
|
|
/// Allows to represent the entity in a CSV compatible way
|
|
/// </summary>
|
|
public interface ICsvRepresentable
|
|
{
|
|
/// <summary>
|
|
/// Converts the entity to a <see cref="CsvData" /> instance
|
|
/// </summary>
|
|
/// <returns>A <see cref="CsvData" /> instance representing this entity</returns>
|
|
CsvData ToCsvData();
|
|
}
|