Skip to content

Commit

Permalink
Merge pull request #17 from supabase-community/dev/restructure-to-sup…
Browse files Browse the repository at this point in the history
…port-di

Restructure Project to support Dependency Injection
  • Loading branch information
acupofjose committed Nov 9, 2022
2 parents 07334bf + cca23d2 commit f74d113
Show file tree
Hide file tree
Showing 21 changed files with 813 additions and 633 deletions.
4 changes: 2 additions & 2 deletions Realtime/Attributes/MapToAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ namespace Supabase.Realtime.Attributes
internal class MapToAttribute : Attribute
{
public string Mapping { get; set; }
public string Formatter { get; set; }
public string? Formatter { get; set; }

public MapToAttribute(string mapping, string formatter = null)
public MapToAttribute(string mapping, string? formatter = null)
{
Mapping = mapping;
Formatter = formatter;
Expand Down
Loading

0 comments on commit f74d113

Please sign in to comment.