public record ProductInformation
{
public ProductDetails Product {get; init;} // Warnings: Non-nullable property Product is unitialized & auto-property accessor is never user
public record ProductDetails
{
public Product {get; init;} // Warnings: Non-nullable property Product is unitialized & auto-property accessor is never user
public init OwnerId {get; init;} //auto-property accessor is never user
}
public record ProductInformation
{
public ProductDetails Product {get; init;} // Warnings: Non-nullable property Product is unitialized & auto-property accessor is never user
public record ProductDetails
{
public Product {get; init;} // Warnings: Non-nullable property Product is unitialized & auto-property accessor is never user
public init OwnerId {get; init;} //auto-property accessor is never user
}