Skip to content

Instantly share code, notes, and snippets.

@superman-lopez
superman-lopez / ExampleIgnoreInCollection.cs
Last active March 6, 2020 08:49
Example of why I want to ignore item in collection
public class ObjectEntity
{
public int Id { get; set; }
public bool ReadOnly { get; set; }
public string SomeDescription { get; set; }
public double SomeValue { get; set; }
}
public class ObjectDto
{