Skip to content

Instantly share code, notes, and snippets.

@gavilanch
Created January 16, 2020 14:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gavilanch/e991ad5fa3ccee5c9d1970248f9803dd to your computer and use it in GitHub Desktop.
Save gavilanch/e991ad5fa3ccee5c9d1970248f9803dd to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BlazorMovies.Client.Helpers
{
public struct MultipleSelectorModel
{
public MultipleSelectorModel(string key, string value)
{
Key = key;
Value = value;
}
public string Key { get; set; }
public string Value { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment