|
1234567891011121314 |
- using BPASmartClient.MorkCL.Model.Recipe;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.MorkCL.Model.Json
- {
- public class RecipesInfo
- {
- public ObservableCollection<ControlData> LocalRecipes { get; set; } = new ObservableCollection<ControlData>();
- }
- }
|