This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace ConsoleApp1 | |
{ | |
using System; | |
using ServiceStack.Redis; | |
using ServiceStack.Text; | |
public class Todo | |
{ | |
public long Id { get; set; } | |
public string Content { get; set; } |