Tested exception handling (#7)

This commit is contained in:
Biarity
2018-02-14 08:43:33 +10:00
parent ce4da673d9
commit b70eb3471d
6 changed files with 50 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Sieve.Attributes;
namespace SieveUnitTests.Entities
{
public class Comment
{
public int Id { get; set; }
public string Text { get; set; }
}
}