PickPoint.cs 232 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. namespace ShoeShopMvc.Models;
  4. public partial class PickPoint
  5. {
  6. public string PickPointsId { get; set; } = null!;
  7. public string AddressPickpoints { get; set; } = null!;
  8. }