Class5.cs 345 B

1234567891011121314151617
  1. using System;
  2. using WpfApp1;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Runtime.Serialization;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace WpfApp1.model
  9. {
  10. [DataContract]
  11. public class CarWithStringDates : cars
  12. {
  13. [DataMember]
  14. public string? dateOfLastSTO { get; set; }
  15. }
  16. }