Skip to content

Commit

Permalink
[Add] Implementation of class responsible for serializing objects
Browse files Browse the repository at this point in the history
  • Loading branch information
natasakasikovic committed Mar 28, 2024
1 parent 802fc85 commit e788d07
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
14 changes: 14 additions & 0 deletions LangLang/Core/Repository/Serialization/Serializable.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace LangLang.Core.Repository.Serialization
{
public interface ISerializable
{
void FromCSV(string[] values);
string[] ToCSV();
}
}
13 changes: 13 additions & 0 deletions LangLang/Core/Repository/Serialization/Serializer.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace LangLang.Core.Repository.Serialization
{
internal class Serializer
{

}
}

0 comments on commit e788d07

Please sign in to comment.