Files
GroundOrganizer/BL/ToSerializ.cs
2026-01-06 02:07:18 +03:00

16 lines
326 B
C#

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GroundOrganizer
{
[Serializable]
internal class ToSerializ
{
public ObservableCollection<PlayGround> PlayGroundList { get; set; }
}
}