1234567891011121314151617 |
- using Shouldly;
- namespace PetaPoco.Tests.Integration.Documentation.Pocos
- {
- public class UnconventionalPoco
- {
- public int PrimaryKey { get; set; }
- public string Text { get; set; }
- public void ShouldBe(UnconventionalPoco other)
- {
- PrimaryKey.ShouldBe(other.PrimaryKey);
- Text.ShouldBe(other.Text);
- }
- }
- }
|