using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Threading.Tasks;
|
|
namespace VueWebCoreApi.Models
|
{
|
public class WareHouseLocation
|
{
|
public string text { get; set; }
|
public string value { get; set; }
|
public List<LocationData> children { get; set; }
|
}
|
public class LocationData
|
{
|
public string text { get; set; }
|
public string value { get; set; }
|
}
|
}
|