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
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 | |
{ |