StoreForName.cs 220 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models.Main1
  4. {
  5. public partial class StoreForName
  6. {
  7. public string Name { get; set; }
  8. public int StoreId { get; set; }
  9. }
  10. }