ex-int-02-meet-the-teacher/MeetTheTeacher/Model/ICsvRepresentable.cs
github-classroom[bot] 1be1863b20
Initial commit
2025-04-24 07:02:41 +00:00

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();
}