Interfaces and Testability lecture not showing all .cs files

So I’m studying interfaces in the Intermediate level C# course and I’m currently on the Interfaces and Testability Lecture, but I’m unable to complete it… The reason being is that Mosh doesn’t show what code he implemented on his Shipment.cs file.

What code has he implemented on it?

1 Like

It’s just a simple class with two props Cost and ShippingDate.

1 Like

public class Shipment
{
Private float Cost { get; Set; }
Private DateTime ShippingDate { get; set;}
}