Skip to content

Instantly share code, notes, and snippets.

@Macadoshis
Created November 29, 2018 13:48
Show Gist options
  • Save Macadoshis/a12bfec6d1081bf4975f97377c7902a8 to your computer and use it in GitHub Desktop.
Save Macadoshis/a12bfec6d1081bf4975f97377c7902a8 to your computer and use it in GitHub Desktop.
namespace CMSS.Domain.Base
{
public class StringPairItemDom : PairItemDom<string>
{
public StringPairItemDom() : this(null, null)
{
}
public StringPairItemDom(int? refId, string refValue) : base(refId, refValue)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment