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
using System; | |
using Newtonsoft.Json; | |
namespace eouw0o83hf.Gist.Change | |
{ | |
/// <summary> | |
/// A lightweight wrapper which tracks a change to a property | |
/// and serializes to one json property for ease of reading in | |
/// an event stream. | |
/// </summary> |
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
using System; | |
using System.IO; | |
using System.Threading.Tasks; | |
using Microsoft.AspNetCore.Http; | |
using Microsoft.AspNetCore.Mvc; | |
namespace Demo.Web.Controllers | |
{ | |
public class UploadController : Controller | |
{ |
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
using System; | |
using System.Linq; | |
using Xunit; | |
namespace Example.Tests | |
{ | |
public static class TestExtensions | |
{ | |
public static string ToCrAzYcAsE(this string input) | |
=> input |
OlderNewer