Closed akiraveliara closed 1 year ago
Enables using data types that are not records using primary constructors with DataObjectConverter, such as the following scenarios:
DataObjectConverter
public sealed record IWantPeopleToUseObjectInitializers : IData { public required string Data { get; init; } }
and
public class IExistInAnOlderCodebase : IData { public required string Data { get; init; } }
let me know if and what tests i should add/whether i should update anything else to go along with these changes/...
Enables using data types that are not records using primary constructors with
DataObjectConverter
, such as the following scenarios:and
let me know if and what tests i should add/whether i should update anything else to go along with these changes/...