Skip to content

Commit

Permalink
Forgot a file. Tired.
Browse files Browse the repository at this point in the history
  • Loading branch information
m-luketin committed May 27, 2019
1 parent a2182c0 commit e6cadde
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
<ItemGroup>
<Compile Include="DependencyViewModel.cs" />
<Compile Include="Interfaces\IViewModel.cs" />
<Compile Include="NormalizedViewModel.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TableViewModel.cs" />
</ItemGroup>
Expand Down
24 changes: 24 additions & 0 deletions Backend/Normalization.ViewModel/NormalizedViewModel.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Normalization.ViewModel
{
public class NormalizedViewModel
{
public string SchemaName { get; set; }
public ICollection<ICollection<string>> TableAttributes { get; set; }

public NormalizedViewModel()
{

}
public NormalizedViewModel(string name, ICollection<ICollection<string>> attributes)
{
SchemaName = name;
TableAttributes = attributes;
}
}
}

0 comments on commit e6cadde

Please sign in to comment.